Files
moby/daemon/libnetwork/support/Dockerfile
Sebastiaan van Stijn 7b45394d42 daemon/libnetwork/support: refresh Dockerfile and script
- update the Dockerfile to switch to the cli-variant (as it doesn't
  require a docker daemon), and update to the latest v29 image
- update the script to not use the deprecated libnetwork repository

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2026-06-16 11:38:15 +02:00

20 lines
260 B
Docker

# syntax=docker/dockerfile:1
FROM docker:29-cli
RUN apk add --no-cache \
util-linux \
bridge-utils \
iptables \
iputils \
iproute2 \
ipvsadm \
conntrack-tools \
jq \
bash
WORKDIR /bin
COPY *.sh /bin/
CMD ["/bin/run.sh"]