mirror of
https://github.com/noerw/sentinel_fire
synced 2025-03-12 18:00:28 +01:00
13 lines
228 B
Text
13 lines
228 B
Text
FROM noerw/sentinel_fire
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y cron \
|
|
apt-get clean && apt-get autoremove -y
|
|
|
|
# install crontab
|
|
COPY crontab /crontab
|
|
RUN /usr/bin/crontab /crontab
|
|
|
|
CMD ["cron", "-f"]
|