Files

18 lines
412 B
Docker
Raw Permalink Normal View History

2026-06-09 21:00:04 +00:00
FROM alpine:3.24
2018-05-22 17:45:49 -04:00
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
2026-06-08 22:29:36 -04:00
# hadolint ignore=DL3018
2018-05-22 17:45:49 -04:00
RUN apk add --no-cache iperf3 && \
adduser -D iperf
2018-05-22 17:50:33 -04:00
## Add Tini
2026-06-08 22:29:36 -04:00
ENV "TINI_VERSION" "v0.16.1"
2018-05-22 17:50:33 -04:00
#ADD "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" "/tini"
#RUN chmod +x "/tini"
#ENTRYPOINT ["/tini", "--"]
2018-05-22 17:45:49 -04:00
USER "iperf"
# hadolint ignore=DL4004
2018-05-22 17:50:33 -04:00
ENTRYPOINT [ "/usr/bin/iperf3" ]