restic-scheduler/Dockerfile
Ian Fijolek 4373cc8e66
Some checks failed
continuous-integration/drone/push Build is failing
Bump to alpine 3.18 and bump versions
Also, more loosely pinning some dependencies with stable apis.
2023-10-23 10:49:33 -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.14 \
sqlite~=3 \
tzdata~=2023c \
;
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]