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-05-19 15:43:11 +00:00
|
|
|
COPY . /restic
|
|
|
|
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-05-19 15:16:29 +00:00
|
|
|
RUN apk add --update --no-cache ca-certificates fuse openssh-client tzdata jq
|
|
|
|
|
|
|
|
ENTRYPOINT ["/usr/bin/restic"]
|