restic-scheduler/Dockerfile
IamTheFij ecf375511c
All checks were successful
continuous-integration/drone/push Build is passing
Pin Alpine version to 3.16
Package versions always break in builds when a new Alpine version comes
out. Im going to start pinning these.
2022-11-28 07:09:14 -08:00

19 lines
386 B
Docker

FROM alpine:3.16
RUN apk add --no-cache \
bash~=5 \
consul~=1.12 \
mariadb-client~=10.6 \
mariadb-connector-c~=3.1 \
rclone~=1.58 \
redis~=7.0 \
restic~=0.13 \
sqlite~=3 \
;
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]