jonahkh
2020-05-29 e8b43eebd832e5ef41b3a077e824d96b6c1facfb
commit | author | age
cc4982 1 FROM ubi8/python-36
PSV 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"]