mcp-hf / Dockerfile
elanuk's picture
Rename Dockerfile.txt to Dockerfile
434f7fa verified
raw
history blame
164 Bytes
FROM python:3.10
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "7860"]