f936c34 d659c31 33dbef6 d659c31
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.8.9 WORKDIR /app # Install pip requirements COPY requirements.txt . RUN python -m pip install -r requirements.txt COPY . /app #CMD