Merge pull request #4220 from Skaronator/master

Add jq to container image
This commit is contained in:
Michael Eischer 2023-04-11 22:26:02 +02:00 committed by GitHub
commit 4661f45a8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
Enhancement: Add jq to container image
The Docker container image now contains jq which can be useful when restic outputs json data.
https://github.com/restic/restic/pull/4220

View File

@ -11,7 +11,7 @@ RUN go run build.go
FROM alpine:latest AS restic
RUN apk add --update --no-cache ca-certificates fuse openssh-client tzdata
RUN apk add --update --no-cache ca-certificates fuse openssh-client tzdata jq
COPY --from=builder /go/src/github.com/restic/restic/restic /usr/bin