Files
cron/Dockerfile
Gyorgy Berenyi cd9a8c2667
Some checks failed
continuous-integration/drone/push Build is failing
revert 3a45eabc15
revert Update Dockerfile
2025-03-05 11:21:32 +00:00

10 lines
267 B
Docker

FROM alpine
RUN apk --update add curl jq docker-cli
RUN mkdir -p /opt/cron
COPY entrypoint.sh /entrypoint.sh
COPY cron-re-read.sh /cron-re-read.sh
COPY service /usr/local/bin/
RUN chmod a+x /usr/local/bin/service
RUN chmod a+x /*.sh
ENTRYPOINT ["/entrypoint.sh"]