restic/docker/Dockerfile

8 lines
127 B
Docker
Raw Normal View History

FROM alpine:latest
2017-06-23 08:26:51 +00:00
COPY restic /usr/bin
2017-06-23 08:38:19 +00:00
RUN apk add --update --no-cache ca-certificates fuse
2017-06-23 08:26:51 +00:00
ENTRYPOINT ["/usr/bin/restic"]