added tini
All checks were successful
continuous-integration/drone/push Build is passing
Vulnerability Scan / Daily Vulnerability Scan (push) Successful in 12s

This commit is contained in:
Paolo Asperti 2025-02-02 11:34:31 +01:00
parent dc09d70a5a
commit eb6f580905
Signed by: paspo
GPG Key ID: 06D46905D19D5182

View File

@ -1,8 +1,10 @@
FROM alpine:3.21
RUN \
apk -U add openssh-server rsync borgbackup
apk --no-cache upgrade && \
apk --no-cache add openssh-server rsync borgbackup tini
COPY rootfs /
ENTRYPOINT [ "/bin/sh", "/app/entrypoint.sh" ]
ENTRYPOINT [ "tini", "--" ]
CMD [ "/bin/sh", "/app/entrypoint.sh" ]