2023-01-23 07:38:55 +00:00
|
|
|
FROM alpine
|
2023-07-01 05:53:04 +00:00
|
|
|
ARG TARGETARCH
|
2023-01-23 07:38:55 +00:00
|
|
|
|
2023-11-14 06:46:14 +00:00
|
|
|
LABEL org.opencontainers.image.authors="The Syncthing Project" \
|
|
|
|
org.opencontainers.image.url="https://syncthing.net" \
|
|
|
|
org.opencontainers.image.documentation="https://docs.syncthing.net" \
|
|
|
|
org.opencontainers.image.source="https://github.com/syncthing/syncthing" \
|
2023-11-14 07:17:34 +00:00
|
|
|
org.opencontainers.image.vendor="The Syncthing Project" \
|
|
|
|
org.opencontainers.image.licenses="MPL-2.0" \
|
2023-11-14 06:46:14 +00:00
|
|
|
org.opencontainers.image.title="Syncthing Crash Receiver"
|
|
|
|
|
2023-01-23 07:38:55 +00:00
|
|
|
EXPOSE 8080
|
|
|
|
|
2023-07-01 05:53:04 +00:00
|
|
|
COPY stcrashreceiver-linux-${TARGETARCH} /bin/stcrashreceiver
|
2023-01-23 07:38:55 +00:00
|
|
|
|
|
|
|
ENTRYPOINT [ "/bin/stcrashreceiver" ]
|