mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-17 04:35:14 +01:00
12 lines
201 B
Docker
12 lines
201 B
Docker
FROM alpine:3.12.4
|
|
|
|
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"]
|