summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: f0b13e1ec88d61779d4253831ce2ca6304dba142 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.9-slim

RUN apt update -y && apt install -y calendar

RUN pip install requests beautifulsoup4 lxml

COPY config.py .
COPY main.py .
COPY on_this_day.py .
COPY config.py .

CMD python main.py