1
0
Fork 0
myserver-configuration/roles/volume_restore/files/Dockerfile

7 lines
174 B
Text
Raw Normal View History

FROM alpine:latest
RUN apk add --update --no-cache tar
RUN mkdir -p /backup/dest
CMD ["tar", "-xf", "/backup/archive.tar.gz", "--strip-components=1", "-C", "/backup/dest"]