cowin-monitor/Dockerfile

12 lines
141 B
Text
Raw Normal View History

FROM python:3.9.4-alpine3.13
COPY requirements.txt /
RUN set -ex \
&& pip install -r requirements.txt
COPY app.py /
CMD python app.py