restic-scheduler/Dockerfile

22 lines
467 B
Docker
Raw Normal View History

FROM alpine:3.17
2022-07-28 03:16:25 +00:00
RUN apk add --no-cache \
bash~=5 \
consul~=1.14 \
2022-07-28 03:16:25 +00:00
mariadb-client~=10.6 \
mariadb-connector-c~=3.3 \
nomad~=1.4 \
postgresql15-client~=15.3 \
rclone~=1.60 \
2022-07-28 03:16:25 +00:00
redis~=7.0 \
restic~=0.14 \
2022-07-28 03:16:25 +00:00
sqlite~=3 \
tzdata~=2023c \
2022-07-28 03:16:25 +00:00
;
2022-04-07 20:36:13 +00:00
2022-04-11 20:00:22 +00:00
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
2022-04-07 20:36:13 +00:00
2022-04-13 22:13:29 +00:00
ENTRYPOINT [ "/bin/resticscheduler" ]