restic-scheduler/Dockerfile

8 lines
152 B
Docker
Raw Normal View History

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