Files
cron/Dockerfile
Gyorgy Berenyi ab782004e4
continuous-integration/drone/push Build is passing
Update Dockerfile
2026-06-29 13:57:27 +00:00

11 lines
316 B
Docker

FROM alpine
RUN apk --update add curl jq docker-cli
RUN mkdir -p /opt/cron
COPY crontab_letsencrypt.txt /opt/cron/crontab.txt
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"]