restic-scheduler/Dockerfile
Ian Fijolek 8ccdde459a
All checks were successful
continuous-integration/drone/push Build is passing
Fix bin path for docker
2022-04-13 15:15:23 -07:00

8 lines
152 B
Docker

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