2023-12-01 22:47:58 +01:00
|
|
|
# Dockerfile to create image with cron services
|
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
# Install Cron
|
|
|
|
RUN apt-get update \
|
|
|
|
&& apt-get -y install cron \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
# Run the command on container startup
|
2023-12-01 22:51:34 +01:00
|
|
|
CMD crontab /root/cron/crontab-file && cron -f
|