File size: 151 Bytes
63ced72
e184b39
 
 
 
 
63ced72
e184b39
63ced72
1
2
3
4
5
6
7
8
9
FROM python:3.9-slim

WORKDIR /app

COPY . .

RUN pip install --no-cache-dir -r requirements.txt

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