FROM alpine:latest RUN apk add --no-cache mysql-client restic rclone RUN mkdir /app && mkdir /config COPY entrypoint.sh /app/entrypoint.sh WORKDIR /config VOLUME /config ENTRYPOINT /app/entrypoint.sh