File size: 132 Bytes
5853149
 
a200a66
 
00f523f
a200a66
00f523f
5853149
a200a66
1
2
3
4
5
6
7
8
9
FROM python:3.9

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

WORKDIR /app
COPY ./ /app

CMD flask --app router run