16 lines
355 B
Plaintext
16 lines
355 B
Plaintext
|
# Copyright (c) 2023 ยท Bryan Joshua Pedini
|
||
|
# LICENSE = gpl3
|
||
|
# see the LICENSE file for more details
|
||
|
|
||
|
ARG DISTRO
|
||
|
FROM alpine:${DISTRO}
|
||
|
|
||
|
ARG VERSION
|
||
|
LABEL maintainer="Bryan Joshua Pedini <b.pedini@bjphoster.com>"
|
||
|
LABEL version="${VERSION}"
|
||
|
|
||
|
COPY crontab /crontab/root
|
||
|
COPY docker-entrypoint.sh /docker-entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|