restic-scheduler/Dockerfile
Ian Fijolek a2823e09ad
All checks were successful
continuous-integration/drone/push Build is passing
Add tzdata
Allows setting container timezone using TZ env variable
2023-08-11 05:53:17 -07:00

22 lines
467 B
Docker

FROM alpine:3.17
RUN apk add --no-cache \
bash~=5 \
consul~=1.14 \
mariadb-client~=10.6 \
mariadb-connector-c~=3.3 \
nomad~=1.4 \
postgresql15-client~=15.3 \
rclone~=1.60 \
redis~=7.0 \
restic~=0.14 \
sqlite~=3 \
tzdata~=2023c \
;
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]