backup-docker/Dockerfile
Djeeberjr 818e58f179
All checks were successful
continuous-integration/drone/push Build is passing
big refactor
too lazy to list things
2022-03-27 19:28:00 +02:00

14 lines
211 B
Docker

FROM restic/restic
RUN apk add --no-cache mysql-client rclone bash fuse postgresql-client
RUN mkdir /app && mkdir /config
COPY src/ /app/
WORKDIR /config
VOLUME /config
ENTRYPOINT [ "/app/entrypoint.sh" ]