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

10 lines
295 B
Docker

FROM alpine
RUN apk --update add curl jq docker-cli
RUN mkdir -p /opt/cron && mkdir -p /usr/local/bin/
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"]