1
0
Fork 0
mirror of https://github.com/noerw/sentinel_fire synced 2025-03-12 18:00:28 +01:00
sentinel2_pipeline/Dockerfile.monitoring
Norwin Roosen 0776e0b80c add monitoring dockerfile #14
runs twice a day, using cron. may be buggy, untested
2018-12-14 14:41:21 +01:00

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"]