2019-11-15 10:51:47 +01:00
|
|
|
FROM restic/restic:0.9.5
|
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-04-15 16:24:57 +02:00
|
|
|
ADD . /restic-volume-backup
|
|
|
|
WORKDIR /restic-volume-backup
|
2019-11-15 14:23:56 +01:00
|
|
|
RUN pip3 install -U pip setuptools
|
2019-11-25 21:19:31 +01:00
|
|
|
RUN pip3 install -e .
|
2019-04-13 19:04:54 +02:00
|
|
|
|
|
|
|
ENTRYPOINT []
|
2019-11-15 10:51:47 +01:00
|
|
|
CMD ["./entrypoint.sh"]
|