restic/docker/Dockerfile

8 lines
149 B
Docker
Raw Normal View History

FROM alpine:latest
2017-06-23 04:26:51 -04:00
COPY restic /usr/bin
2020-11-27 02:05:19 -05:00
RUN apk add --update --no-cache ca-certificates fuse openssh-client tzdata
2017-06-23 04:38:19 -04:00
2017-06-23 04:26:51 -04:00
ENTRYPOINT ["/usr/bin/restic"]