fix: add docker-cli to alpine backrest image

This commit is contained in:
Gareth
2024-07-12 14:02:51 -07:00
committed by GitHub
parent 622b4858c2
commit 9c3bebd468
+2 -2
View File
@@ -1,9 +1,9 @@
FROM alpine:latest
RUN apk --no-cache add tini ca-certificates curl bash rclone openssh tzdata
RUN apk --no-cache add tini ca-certificates curl bash rclone openssh tzdata docker-cli
RUN mkdir -p /tmp
COPY backrest /backrest
RUN /backrest --install-deps-only
RUN mkdir -p /bin && mv /root/.local/share/backrest/* /bin
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/backrest", "--bind-address", ":9898"]
CMD ["/backrest", "--bind-address", ":9898"]