-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
25 lines (18 loc) · 1.02 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM ghcr.io/galexrt/container-toolbox:v20231109-123917-402
ARG BUILD_DATE="N/A"
ARG REVISION="N/A"
ARG ANCIENTT_VERSION="N/A"
LABEL org.opencontainers.image.authors="Alexander Trost <[email protected]>" \
org.opencontainers.image.created="${BUILD_DATE}" \
org.opencontainers.image.title="galexrt/ancientt" \
org.opencontainers.image.description="A tool to automate network testing tools, like iperf3, in dynamic environments such as Kubernetes and more to come dynamic environments." \
org.opencontainers.image.documentation="https://github.com/galexrt/ancientt/blob/main/README.md" \
org.opencontainers.image.url="https://github.com/galexrt/ancientt" \
org.opencontainers.image.source="https://github.com/galexrt/ancientt" \
org.opencontainers.image.revision="${REVISION}" \
org.opencontainers.image.vendor="galexrt" \
org.opencontainers.image.version="${ANCIENTT_VERSION}"
ADD .build/linux-amd64/ancientt /bin/ancientt
RUN chmod 755 /bin/ancientt
ENTRYPOINT ["/bin/ancientt"]
CMD ["--help"]