File size: 181 Bytes
8af80a1
080ce5b
 
59150a4
 
080ce5b
 
 
 
6022947
080ce5b
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.8


WORKDIR /workspace
ADD . /workspace


RUN pip install -r requirements.txt

CMD [ "python" , "/workspace/app.py" , " — host", "127.0.0.1", " — port", "5000" ]