2019-12-02 20:14:57 +00:00
|
|
|
FROM restic/restic:0.9.6
|
2019-04-13 17:04:54 +00:00
|
|
|
|
2019-04-13 21:29:28 +00:00
|
|
|
RUN apk update && apk add python3 dcron mariadb-client postgresql-client
|
2019-04-13 17:04:54 +00:00
|
|
|
|
2019-12-03 08:40:02 +00:00
|
|
|
ADD . /restic-compose-backup
|
|
|
|
WORKDIR /restic-compose-backup
|
2019-11-15 13:23:56 +00:00
|
|
|
RUN pip3 install -U pip setuptools
|
2019-11-25 20:19:31 +00:00
|
|
|
RUN pip3 install -e .
|
2019-04-13 17:04:54 +00:00
|
|
|
|
|
|
|
ENTRYPOINT []
|
2019-11-15 09:51:47 +00:00
|
|
|
CMD ["./entrypoint.sh"]
|