File size: 286 Bytes
90b617f
 
 
 
 
 
46c6a1f
90b617f
 
 
 
62858ec
1
2
3
4
5
6
7
8
9
10
11
12
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"]