mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-07 08:31:55 +00:00
19 lines
294 B
Docker
19 lines
294 B
Docker
|
FROM golang AS builder
|
||
|
|
||
|
RUN git clone https://github.com/restic/restic.git /workspace
|
||
|
|
||
|
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/
|
||
|
|
||
|
CMD [ "restic" ]
|