FROM python:3

COPY . /

RUN \
pip install --no-cache-dir -U -r requirements.txt

CMD ["python3", "notifier.py"]
