File size: 266 Bytes
071e1f4
 
b0fd046
071e1f4
 
 
 
b0fd046
 
 
071e1f4
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.10-slim

# Install deps
RUN pip install --no-cache-dir flask requests gunicorn

WORKDIR /app

# Copy code and default image
COPY app.py    /app/app.py
COPY default.png /app/default.png

EXPOSE 7860

CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]