13 lines
257 B
Docker
13 lines
257 B
Docker
FROM alpine:latest
|
|
|
|
RUN \
|
|
apk --no-cache upgrade && \
|
|
apk --no-cache add rclone tini mariadb-client xz zstd
|
|
|
|
COPY rootfs /
|
|
|
|
HEALTHCHECK --interval=2m --timeout=3s \
|
|
CMD /app/healthcheck.sh || exit 1
|
|
|
|
ENTRYPOINT [ "/sbin/tini", "/app/entrypoint.sh" ]
|