Dockerfile.ursrv 584 B

1234567891011121314151617
  1. FROM alpine
  2. ARG TARGETARCH
  3. LABEL org.opencontainers.image.authors="The Syncthing Project" \
  4. org.opencontainers.image.url="https://syncthing.net" \
  5. org.opencontainers.image.documentation="https://docs.syncthing.net" \
  6. org.opencontainers.image.source="https://github.com/syncthing/syncthing" \
  7. org.opencontainers.image.vendor="The Syncthing Project" \
  8. org.opencontainers.image.licenses="MPL-2.0" \
  9. org.opencontainers.image.title="Syncthing Usage Reporting Server"
  10. EXPOSE 8080
  11. COPY ursrv-linux-${TARGETARCH} /bin/ursrv
  12. ENTRYPOINT [ "/bin/ursrv" ]