seafile-backup/Dockerfile

7 lines
236 B
Docker
Raw Normal View History

2023-08-26 02:46:07 -05:00
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
2023-08-15 21:35:05 -05:00
CMD ["/opt/entrypoint.sh"]