lausayag/fromscratch
0
1FROM python:3.10-slim2 3WORKDIR /app4COPY requirements.txt .5RUN pip install --no-cache-dir -r requirements.txt6 7COPY . .8# Expose le port où FastMCP va écouter9EXPOSE 786010 11# Lance le serveur MCP12CMD ["python", "app.py"]13 