From 393cc232c1ea2c1abd4fcf82910f01b1da044e5c Mon Sep 17 00:00:00 2001 From: Leonardo Fedalto Date: Wed, 5 Jun 2019 08:42:28 -0300 Subject: [PATCH] Bump to restic 0.9.5 https://github.com/restic/restic/releases/tag/v0.9.5 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index df1ac0e..e3c3742 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ FROM busybox:glibc COPY --from=certs /etc/ssl/certs /etc/ssl/certs # Get restic executable -ENV RESTIC_VERSION=0.9.4 +ENV RESTIC_VERSION=0.9.5 ADD https://github.com/restic/restic/releases/download/v${RESTIC_VERSION}/restic_${RESTIC_VERSION}_linux_amd64.bz2 / RUN bzip2 -d restic_${RESTIC_VERSION}_linux_amd64.bz2 && mv restic_${RESTIC_VERSION}_linux_amd64 /bin/restic && chmod +x /bin/restic