docker-borgstore/Dockerfile

11 lines
196 B
Docker
Raw Permalink Normal View History

2025-01-27 08:49:55 +01:00
FROM alpine:3.21
RUN \
2025-02-02 11:34:31 +01:00
apk --no-cache upgrade && \
apk --no-cache add openssh-server rsync borgbackup tini
2025-01-27 08:49:55 +01:00
COPY rootfs /
2025-02-02 11:34:31 +01:00
ENTRYPOINT [ "tini", "--" ]
CMD [ "/bin/sh", "/app/entrypoint.sh" ]