Files
iperf3/Dockerfile
T
jcabillot bc60db7df4
Docker Build and Push / lint (push) Successful in 7s
Docker Build and Push / build (push) Successful in 19s
Docker Build and Push / test (push) Successful in 12s
Docker Build and Push / push (push) Successful in 20s
Merge pull request 'chore: fix Dockerfile FROM quotes, gitlabci image quotes' (#3) from chore/renovate into master
Reviewed-on: #3
2026-06-09 08:36:48 -04:00

18 lines
412 B
Docker

FROM alpine:3.23
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
# hadolint ignore=DL3018
RUN apk add --no-cache iperf3 && \
adduser -D iperf
## Add Tini
ENV "TINI_VERSION" "v0.16.1"
#ADD "https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini" "/tini"
#RUN chmod +x "/tini"
#ENTRYPOINT ["/tini", "--"]
USER "iperf"
# hadolint ignore=DL4004
ENTRYPOINT [ "/usr/bin/iperf3" ]