blob: 73e757a799ba5220ad29a383bda816de67eefe71 (
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"]
|