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

11 lines
166 B
Text
Raw Normal View History

FROM alpine:latest
RUN apk add --update --no-cache tar
RUN mkdir -p /backup/dest
2023-05-21 18:31:35 +02:00
COPY ./extract.sh /usr/bin/extract
RUN chmod +x /usr/bin/extract
CMD ["restore"]