2023-05-19 15:43:11 +00:00
|
|
|
# the official binaries are cross-built from Linux running on an AMD64 host
|
|
|
|
# other architectures also seem to generate identical binaries but stay on the safe side
|
|
|
|
FROM --platform=linux/amd64 restic/builder:latest as helper
|
2023-05-19 15:16:29 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
|
2023-06-17 14:22:50 +00:00
|
|
|
COPY --chown=build . /restic
|
2023-05-19 15:43:11 +00:00
|
|
|
RUN go run helpers/build-release-binaries/main.go --platform $TARGETOS/$TARGETARCH --skip-compress
|
|
|
|
RUN mv /output/restic_${TARGETOS}_${TARGETARCH} /output/restic
|
2023-05-19 15:16:29 +00:00
|
|
|
|
|
|
|
|
|
|
|
FROM alpine:latest
|
|
|
|
|
2023-05-19 15:43:11 +00:00
|
|
|
COPY --from=helper /output/restic /usr/bin
|
2023-10-01 10:00:15 +00:00
|
|
|
RUN apk add --no-cache ca-certificates fuse openssh-client tzdata jq
|
2023-05-19 15:16:29 +00:00
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/restic"]
|