2023-06-09 06:40:49 -04:00
|
|
|
FROM golang:1.20-alpine AS builder
|
2017-06-23 04:26:51 -04:00
|
|
|
|
2021-09-20 08:18:48 -04:00
|
|
|
WORKDIR /go/src/github.com/restic/restic
|
|
|
|
|
|
|
|
|
|
# Caching dependencies
|
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
|
RUN go mod download
|
|
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
RUN go run build.go
|
|
|
|
|
|
|
|
|
|
FROM alpine:latest AS restic
|
2017-06-23 04:26:51 -04:00
|
|
|
|
2023-10-01 06:00:15 -04:00
|
|
|
RUN apk add --no-cache ca-certificates fuse openssh-client tzdata jq
|
2017-06-23 04:38:19 -04:00
|
|
|
|
2021-09-20 08:18:48 -04:00
|
|
|
COPY --from=builder /go/src/github.com/restic/restic/restic /usr/bin
|
|
|
|
|
|
2017-06-23 04:26:51 -04:00
|
|
|
ENTRYPOINT ["/usr/bin/restic"]
|