engine-relay / Dockerfile
josephrw's picture
Upload folder using huggingface_hub
9887034 verified
Raw
History Blame Contribute Delete
239 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY app.py /app/app.py
RUN pip install --no-cache-dir fastapi==0.115.6 uvicorn[standard]==0.34.0 httpx==0.28.1
ENV PORT=7860
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]