diff options
author | Mark Powers <mark@marks.kitchen> | 2024-07-14 15:07:25 -0500 |
---|---|---|
committer | Mark Powers <mark@marks.kitchen> | 2024-07-14 15:07:25 -0500 |
commit | a6f19ac417880536c89361b2593667e1294026e0 (patch) | |
tree | 7483de132d96887083e26c8f3a62362208829ab9 /Dockerfile | |
parent | 10593b1e128e37c3899eae78ac4dcce776f3ab81 (diff) |
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f0b13e1 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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 |