mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
5de876c7ae
Before running the support script try to fetch the latest version Signed-off-by: Flavio Crisciani <flavio.crisciani@docker.com>
19 lines
401 B
Docker
19 lines
401 B
Docker
FROM docker:18-dind
|
|
|
|
RUN set -ex \
|
|
&& echo "http://nl.alpinelinux.org/alpine/edge/main" >> /etc/apk/repositories \
|
|
&& echo "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
|
|
RUN apk add --no-cache \
|
|
util-linux \
|
|
bridge-utils \
|
|
iptables \
|
|
iputils \
|
|
iproute2 \
|
|
ipvsadm \
|
|
conntrack-tools \
|
|
bash
|
|
|
|
WORKDIR /bin
|
|
COPY *.sh /bin/
|
|
|
|
CMD /bin/run.sh
|