restic-scheduler/Dockerfile

8 lines
152 B
Docker
Raw Normal View History

2022-04-07 13:36:13 -07:00
FROM scratch
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" ]