Files
cron/Dockerfile
2024-09-18 12:28:37 +02: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"]