Files
Dockerfiles/restic/Dockerfile

21 lines
320 B
Docker
Raw Normal View History

2020-11-18 17:28:26 +08:00
FROM golang AS builder
2025-10-14 23:57:56 +08:00
RUN git clone https://github.com/restic/restic.git -b v0.18.1 /workspace
2020-11-18 17:28:26 +08:00
WORKDIR /workspace/
RUN go run build.go
RUN ./restic version
FROM rclone/rclone:latest
MAINTAINER Newnius <newnius.cn@gmail.com>
COPY --from=builder /workspace/restic /usr/local/bin/
2020-11-18 18:18:09 +08:00
ENTRYPOINT []
2020-11-18 17:28:26 +08:00
CMD [ "restic" ]