Dockerfile.strelaypoolsrv 624 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 Relay Pool Server"
  10. EXPOSE 8080
  11. COPY strelaypoolsrv-linux-${TARGETARCH} /bin/strelaypoolsrv
  12. ENTRYPOINT ["/bin/strelaypoolsrv", "-listen", ":8080"]