restic-scheduler/Dockerfile
Ian Fijolek b1fe2537e2
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Add postgres support for backup and restore
2023-08-02 15:58:41 -07:00

21 lines
443 B
Docker

FROM alpine:3.17
RUN apk add --no-cache \
bash~=5 \
consul~=1.14 \
mariadb-client~=10.6 \
mariadb-connector-c~=3.3 \
nomad~=1.4 \
postgresql15-client~=15.3 \
rclone~=1.60 \
redis~=7.0 \
restic~=0.14 \
sqlite~=3 \
;
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]