blob: fe212dde82474c2a4017581a5bc618e2c553ac6d (
plain) (
blame)
1
2
3
4
5
6
7
|
FROM alpine:3.16
RUN apk update && apk add --no-cache git cronie busybox-initscripts
# RUN rc-service crond start && rc-update add crond
COPY ./bootstrap.sh /bootstrap.sh
COPY ./docker-entrypoint.sh /docker-entrypoint.sh
COPY ./crontab /etc/crontabs/root
ENTRYPOINT ["/bootstrap.sh"]
|