File size: 176 Bytes
7f4c438
 
 
 
 
 
 
c07bba2
b93b844
1
2
3
4
5
6
7
8
9
10
FROM python:3.9

WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY ./app.py /code/app.py

RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]