mofh-api-proxy / Dockerfile
mrsavage1's picture
Upload 15 files
46c6a1f verified
raw
history blame contribute delete
286 Bytes
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.11-slim
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py /app/
COPY github_deploy.py /app/
ENV PORT=7860
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]