seafile-backup/Dockerfile
jblu 1f8d77b98d
All checks were successful
continuous-integration/drone/push Build is passing
fixed some bugs
2023-08-29 09:25:09 -05:00

7 lines
240 B
Docker

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
CMD ["/opt/entrypoint.sh"]