restic-scheduler/Dockerfile
Ian Fijolek f9f00951a7
Some checks reported errors
continuous-integration/drone/push Build was killed
Fix bin path for docker
2022-04-13 15:13:29 -07:00

8 lines
152 B
Docker

FROM scratch
ARG TARGETOS
ARG TARGETARCH
COPY ./dist/resticscheduler-$TARGETOS-$TARGETARCH /bin/resticscheduler
ENTRYPOINT [ "/bin/resticscheduler" ]