parent
dcca3c3d2b
commit
823b1f7d6d
|
@ -18,9 +18,9 @@ LABEL maintainer="Steve Kriss <krisss@vmware.com>"
|
|||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends ca-certificates wget bzip2 && \
|
||||
wget --quiet https://github.com/restic/restic/releases/download/v0.9.5/restic_0.9.5_linux_amd64.bz2 && \
|
||||
bunzip2 restic_0.9.5_linux_amd64.bz2 && \
|
||||
mv restic_0.9.5_linux_amd64 /usr/bin/restic && \
|
||||
wget --quiet https://github.com/restic/restic/releases/download/v0.9.6/restic_0.9.6_linux_amd64.bz2 && \
|
||||
bunzip2 restic_0.9.6_linux_amd64.bz2 && \
|
||||
mv restic_0.9.6_linux_amd64 /usr/bin/restic && \
|
||||
chmod +x /usr/bin/restic && \
|
||||
apt-get remove -y wget bzip2 && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
|
2
Makefile
2
Makefile
|
@ -34,7 +34,7 @@ VERSION ?= master
|
|||
TAG_LATEST ?= false
|
||||
|
||||
# The version of restic binary to be downloaded for power architecture
|
||||
RESTIC_VERSION ?= 0.9.5
|
||||
RESTIC_VERSION ?= 0.9.6
|
||||
|
||||
CLI_PLATFORMS ?= linux-amd64 linux-arm linux-arm64 darwin-amd64 windows-amd64 linux-ppc64le
|
||||
CONTAINER_PLATFORMS ?= linux-amd64 linux-ppc64le #linux-arm linux-arm64
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
bump restic to 0.9.6 to fix some issues with non AWS standard regions
|
Loading…
Reference in New Issue