working rc1

This commit is contained in:
2023-08-26 02:46:07 -05:00
parent d0e1100689
commit e997841034
12 changed files with 261 additions and 78 deletions

View File

@ -1,4 +1,7 @@
FROM alpine:latest
RUN apk add --no-cache mariadb-client rclone curl supercronic docker
COPY entrypoint.sh opt
FROM python:alpine3.18
RUN apk add --no-cache mariadb-client rclone supercronic docker restic
COPY . opt
RUN chmod +x /opt/entrypoint.sh
RUN chmod +x /opt/restic.sh
RUN pip install requests python-dotenv
CMD ["/opt/entrypoint.sh"]