SACCP-head / Dockerfile
Bc-AI's picture
Update Dockerfile
3ddde68 verified
raw
history blame contribute delete
214 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi==0.104.1 uvicorn[standard]==0.24.0 httpx==0.25.2
COPY app.py .
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]