seafile-backup/Dockerfile

7 lines
234 B
Docker
Raw Normal View History

2024-06-08 14:04:21 -05:00
FROM python:alpine3.18
RUN apk add --no-cache mariadb-client rclone supercronic docker restic zip
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"]