restic-scheduler/Dockerfile

10 lines
254 B
Docker
Raw Normal View History

FROM alpine:3
2022-04-15 10:27:34 -07:00
RUN apk add --no-cache mariadb-client~=10.6 mariadb-connector-c~=3.1 sqlite~=3 bash~=5 restic~=0.12
2022-04-07 13:36:13 -07:00
2022-04-11 13:00:22 -07:00
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
2022-04-07 13:36:13 -07:00
2022-04-13 15:13:29 -07:00
ENTRYPOINT [ "/bin/resticscheduler" ]