codenexus / Dockerfile
farhan1221's picture
Upload 26 files
91990f9 verified
Raw
History Blame Contribute Delete
229 Bytes
FROM python:3.11
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Hugging face runs on port 7860 by default
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]