tech-wizard-mcp / Dockerfile
Brettapps's picture
Upload folder using huggingface_hub
fe893f9 verified
raw
history blame contribute delete
116 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY pyproject.toml .
RUN pip install .
COPY . .
CMD ["python", "server.py"]