cowin-monitor/Dockerfile
Ameya Shenoy 1383c30bf6
feat: add telegram bot for cowin alert
Signed-off-by: Ameya Shenoy <shenoy.ameya@gmail.com>
2021-05-02 22:46:24 +05:30

11 lines
141 B
Docker

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