2020-05-07 16:56:40 +03:00

9 lines
95 B
Docker

FROM python:3.7
RUN pip3 install flask requests
COPY . /app
WORKDIR /app
CMD python3 app.py