All checks were successful
Docker Build and Publish / build (push) Successful in 38s
10 lines
176 B
Docker
10 lines
176 B
Docker
FROM debian:bookworm-slim
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y iperf3 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
EXPOSE 5201
|
|
|
|
ENTRYPOINT ["iperf3"] |