restic-compose-backup/Dockerfile

12 lines
256 B
Docker

FROM restic/restic:0.9.6
RUN apk update && apk add python3 dcron mariadb-client postgresql-client
ADD . /restic-compose-backup
WORKDIR /restic-compose-backup
RUN pip3 install -U pip setuptools
RUN pip3 install -e .
ENTRYPOINT []
CMD ["./entrypoint.sh"]