2021-03-29 20:28:09 +00:00
|
|
|
FROM alpine:latest
|
|
|
|
|
|
|
|
RUN apk add --no-cache mysql-client restic rclone
|
|
|
|
|
|
|
|
RUN mkdir /app && mkdir /config
|
|
|
|
|
|
|
|
COPY entrypoint.sh /app/entrypoint.sh
|
2021-03-29 20:55:10 +00:00
|
|
|
COPY init.sh /app/init.sh
|
2021-03-29 20:28:09 +00:00
|
|
|
|
|
|
|
WORKDIR /config
|
|
|
|
|
|
|
|
VOLUME /config
|
|
|
|
|
|
|
|
ENTRYPOINT /app/entrypoint.sh
|