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

11 lines
No EOL
166 B
Docker

FROM alpine:latest
RUN apk add --update --no-cache tar
RUN mkdir -p /backup/dest
COPY ./extract.sh /usr/bin/extract
RUN chmod +x /usr/bin/extract
CMD ["restore"]