From a6f19ac417880536c89361b2593667e1294026e0 Mon Sep 17 00:00:00 2001 From: Mark Powers Date: Sun, 14 Jul 2024 15:07:25 -0500 Subject: Dockerize application --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') 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 -- cgit v1.2.3