mirror of
https://github.com/codingCoffee/cowin-monitor.git
synced 2025-12-11 03:07:02 +00:00
11 lines
141 B
Docker
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
|
|
|