mirror of
https://github.com/moby/moby.git
synced 2026-08-03 14:41:03 +00:00
- 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>
20 lines
260 B
Docker
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"]
|