restic-scheduler/Dockerfile
Ian Fijolek a92ebc69ca
All checks were successful
continuous-integration/drone/push Build is passing
Add rclone to Docker image
2022-07-27 20:16:25 -07:00

19 lines
383 B
Docker

FROM alpine:3
RUN apk add --no-cache \
bash~=5 \
consul~=1.12 \
mariadb-client~=10.6 \
mariadb-connector-c~=3.1 \
rclone~=1.58 \
redis~=7.0 \
restic~=0.13 \
sqlite~=3 \
;
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]