9 lines
121 B
Docker
9 lines
121 B
Docker
FROM python:3
|
|
|
|
COPY . /
|
|
|
|
RUN \
|
|
pip install --no-cache-dir -U -r requirements.txt
|
|
|
|
CMD ["python3", "notifier.py"]
|