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