File size: 200 Bytes
cef5b3d
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
FROM python:3.11-slim-bookworm

WORKDIR /app

COPY requirements.txt /app/
RUN pip install -r requirements.txt --no-cache-dir

COPY . /app

CMD ["gunicorn", "app:server", "run", "--bind", "0.0.0.0:80"]