docker-borgstore/Dockerfile
paspo eb6f580905
All checks were successful
continuous-integration/drone/push Build is passing
Vulnerability Scan / Daily Vulnerability Scan (push) Successful in 12s
added tini
2025-02-02 11:34:31 +01:00

11 lines
196 B
Docker

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