mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-18 13:14:56 +01:00
12 lines
194 B
Docker
12 lines
194 B
Docker
FROM alpine
|
|
|
|
RUN apk add --update --no-cache \
|
|
curl
|
|
|
|
COPY callbacks_cron /etc/periodic/15min/callbacks_cron
|
|
|
|
RUN chmod +x /etc/periodic/15min/callbacks_cron
|
|
|
|
ENTRYPOINT ["crond"]
|
|
CMD ["-f"]
|