Bump kopia

This commit is contained in:
Simon Beck 2023-12-29 12:44:30 +01:00
parent d574ee98c7
commit d645b44b67
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
FROM golang:1.17 as build
ENV CGO_ENABLED=0
ENV KOPIA_VERSION=0.13.0
ENV KOPIA_VERSION=0.15.0
WORKDIR /kopia-k8s
RUN wget "https://github.com/kopia/kopia/releases/download/v${KOPIA_VERSION}/kopia-${KOPIA_VERSION}-linux-x64.tar.gz" && \
@ -10,7 +10,7 @@ RUN VERSION=$(git describe --tags --always) && \
go build -v -a -ldflags "-X main.version=$VERSION"
FROM alpine
ENV KOPIA_VERSION=0.13.0
ENV KOPIA_VERSION=0.15.0
RUN apk --no-cache add ca-certificates
COPY --from=build /kopia-k8s/kopia-k8s /kopia-k8s
COPY --from=build /kopia-k8s/kopia-${KOPIA_VERSION}-linux-x64 /usr/local/bin