File size: 153 Bytes
e2186ba
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.8-slim

COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt

COPY . /app

CMD ["python", "app.py"]