2022-04-13 22:39:52 +00:00
|
|
|
FROM alpine:3
|
|
|
|
|
2022-07-25 22:32:05 +00:00
|
|
|
RUN apk add --no-cache consul~=1.12 redis~=7.0 mariadb-client~=10.6 mariadb-connector-c~=3.1 sqlite~=3 bash~=5 restic~=0.13
|
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" ]
|