restic-scheduler/Dockerfile
Ian Fijolek 47f1c14c48
All checks were successful
continuous-integration/drone/push Build is passing
Bump alpine and dep versions and add nomad
2023-04-04 16:48:26 -07:00

20 lines
409 B
Docker

FROM alpine:3.17
RUN apk add --no-cache \
bash~=5 \
consul~=1.14 \
nomad~=1.4.6 \
mariadb-client~=10.6 \
mariadb-connector-c~=3.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" ]