-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add rclone binary to docker image and arm64 support (#105)
- Loading branch information
1 parent
147feb4
commit 5a49f2f
Showing
5 changed files
with
33 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,9 @@ | ||
FROM golang:alpine as gobuild | ||
RUN mkdir /tmp-orig | ||
COPY backrest /backrest | ||
|
||
FROM rclone/rclone:1.65 as rclone | ||
|
||
FROM alpine:latest | ||
COPY --from=gobuild /tmp-orig /tmp | ||
COPY --from=rclone /usr/local/bin/rclone /usr/local/bin/rclone | ||
RUN apk --no-cache add ca-certificates bash curl | ||
RUN apk --no-cache add ca-certificates curl bash | ||
RUN mkdir -p /tmp | ||
|
||
ENTRYPOINT ["/backrest"] | ||
COPY backrest /backrest |
This file was deleted.
Oops, something went wrong.