11 lines
No EOL
166 B
Docker
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"] |