jonahkh
2020-05-15 12d85f8a71b4a43651d8f6c89b55ac40df15986e
commit | author | age
4829e4 1 FROM ubi8/python-36
J 2
3 ENV FLASK_APP="gossip.py"
4
5 COPY src /app
6 COPY requirements.txt /app
7
8 WORKDIR /app
9
10 RUN pip install -r requirements.txt
11
12 EXPOSE 5000
13
14 CMD [ "flask", "run", "--host=0.0.0.0"]