2023-08-26 02:46:07 -05:00
|
|
|
FROM python:alpine3.18
|
2023-08-29 09:25:09 -05:00
|
|
|
RUN apk add --no-cache mariadb-client rclone supercronic docker restic zip
|
2023-08-26 02:46:07 -05:00
|
|
|
COPY . opt
|
|
|
|
RUN chmod +x /opt/entrypoint.sh
|
|
|
|
RUN chmod +x /opt/restic.sh
|
|
|
|
RUN pip install requests python-dotenv
|
2023-08-15 21:35:05 -05:00
|
|
|
CMD ["/opt/entrypoint.sh"]
|