Update .gitlab-ci.yml, restic/Dockerfile, minio/Dockerfile, restic/version, restic/Makefile files

This commit is contained in:
2020-12-20 17:32:44 +00:00
parent c79810b5e0
commit b19d80e94a
5 changed files with 48 additions and 1 deletions

7
restic/Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM alpine:3.12.3
ARG VERSION
ARG TARGETARCH
ENV VERSION $VERSION
ADD https://github.com/restic/restic/releases/download/v${VERSION}/restic_${VERSION}_linux_${TARGETARCH}.bz2 /root/restic.bz2
RUN bunzip2 /root/restic.bz2 && chmod +x /root/restic && mv /root/restic /usr/bin/restic
ENTRYPOINT ["/usr/bin/restic"]