Skip to content

Commit

Permalink
fix: add docker-cli to alpine backrest image
Browse files Browse the repository at this point in the history
  • Loading branch information
garethgeorge authored Jul 12, 2024
1 parent c19665a commit b6f9129
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -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"]

0 comments on commit b6f9129

Please sign in to comment.