aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2025-09-09 11:42:34 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2025-09-09 11:42:34 +0100
commit818f52be08486ad5f51faad0b40d94d0e1066e7d (patch)
treed1010f42d2f4711ca41b8b2731ac513cd96957b9 /Dockerfile
parent99185c9283a0aae7334b35bc37b4c7b498d09f88 (diff)
downloadcron-818f52be08486ad5f51faad0b40d94d0e1066e7d.tar.gz
cron-818f52be08486ad5f51faad0b40d94d0e1066e7d.zip
Added Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..c8801c5
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,11 @@
+FROM ubuntu:22.04
+ENV TZ=Europe/London
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
+RUN apt-get update -y
+RUN apt-get install -y python3-pip iputils-ping cron git
+COPY entrypoint.sh /cron_entrypoint.sh
+
+ENTRYPOINT ["bash"]
+CMD ["/cron_entrypoint.sh"]
+
+