restic-scheduler/Dockerfile
Ian Fijolek 84095f9875
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
Remove patch version from Nomad binary
2023-05-09 14:31:44 -07:00

20 lines
407 B
Docker

FROM alpine:3.17
RUN apk add --no-cache \
bash~=5 \
consul~=1.14 \
nomad~=1.4 \
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" ]