restic-scheduler/Dockerfile
Ian Fijolek ff8eea2568
All checks were successful
continuous-integration/drone/push Build is passing
Bump restic up one
2023-10-25 20:08:31 -07:00

22 lines
454 B
Docker

FROM alpine:3.18
RUN apk add --no-cache \
bash~=5 \
consul~=1 \
mariadb-client~=10 \
mariadb-connector-c~=3 \
nomad~=1 \
postgresql15-client~=15 \
rclone~=1.62 \
redis~=7 \
restic~=0.15 \
sqlite~=3 \
tzdata~=2023c \
;
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]