restic-compose-backup/Dockerfile

11 lines
255 B
Text
Raw Normal View History

2019-12-02 21:14:57 +01:00
FROM restic/restic:0.9.6
2019-04-13 19:04:54 +02:00
2019-04-13 23:29:28 +02:00
RUN apk update && apk add python3 dcron mariadb-client postgresql-client
2019-04-13 19:04:54 +02:00
2019-12-03 09:40:02 +01:00
ADD . /restic-compose-backup
WORKDIR /restic-compose-backup
2019-12-04 00:50:05 +01:00
RUN pip3 install -U pip setuptools && pip3 install -e .
2019-04-13 19:04:54 +02:00
ENTRYPOINT []
CMD ["./entrypoint.sh"]