forked from galexrt/srcds_exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
19 lines (15 loc) · 878 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FROM quay.io/prometheus/busybox:latest
ARG BUILD_DATE="N/A"
ARG REVISION="N/A"
LABEL org.opencontainers.image.authors="Alexander Trost <[email protected]>" \
org.opencontainers.image.created="${BUILD_DATE}" \
org.opencontainers.image.title="galexrt/srcds_exporter" \
org.opencontainers.image.description="Container Image with TeamSpeak³ Server." \
org.opencontainers.image.documentation="https://github.com/galexrt/srcds_exporter/blob/main/README.md" \
org.opencontainers.image.url="https://github.com/galexrt/srcds_exporter" \
org.opencontainers.image.source="https://github.com/galexrt/srcds_exporter" \
org.opencontainers.image.revision="${REVISION}" \
org.opencontainers.image.vendor="galexrt" \
org.opencontainers.image.version="N/A"
ADD .build/linux-amd64/srcds_exporter /bin/srcds_exporter
ENTRYPOINT ["/bin/srcds_exporter"]