@@ -5,19 +5,29 @@ RUN apk add --no-cache --update bash ca-certificates curl make git openssh-clien
5
5
RUN git clone https://github.com/docker/swarmkit.git swarmkit && cd swarmkit && make bin/swarmctl && cp bin/swarmctl /usr/bin/swarmctl && rm -rf /go/src/github.com/docker/swarmkit
6
6
7
7
FROM alpine:3.9 as build-protoc
8
- # should stay consistent with the version in .circleci/config.yml
9
8
ARG PROTOC_VERSION=3.6.1
9
+ RUN apk add --update --no-cache unzip curl
10
10
# download and install protoc binary and .proto files
11
11
RUN curl --silent --show-error --location --output protoc.zip \
12
12
https://github.com/google/protobuf/releases/download/v$PROTOC_VERSION/protoc-$PROTOC_VERSION-linux-x86_64.zip \
13
13
&& unzip -d /usr/local protoc.zip include/\* bin/\* \
14
14
&& rm -f protoc.zip
15
15
16
- FROM alpine:3.9
16
+ FROM alpine:3.9 as build-docker
17
+ ARG DOCKER_CLIENT_VERSION=18.09.1
18
+ RUN apk add --update --no-cache curl
19
+ RUN curl -SsL --output docker.tgz \
20
+ https://download.docker.com/linux/static/stable/x86_64/docker-$DOCKER_CLIENT_VERSION.tgz \
21
+ && tar xvzf docker.tgz \
22
+ && cp docker/docker /usr/bin/docker \
23
+ && rm -f docker.tgz
17
24
25
+ FROM alpine:3.9
26
+ RUN apk add --no-cache --update bash jq
18
27
# WORKDIR /go/src/github.com/docker
19
28
# RUN git clone https://github.com/docker/swarmkit.git swarmkit && cd swarmkit && make bin/swarmctl && cp bin/swarmctl /usr/bin/swarmctl && rm -rf /go/src/github.com/docker/swarmkit
20
- COPY --from=build-swarmctl /usr/bin/swarmctl /usr/bin/swarmctl
29
+ COPY --from=build-swarmctl /usr/bin/swarmctl /usr/bin
21
30
COPY --from=build-protoc /usr/local/. /usr/local
31
+ COPY --from=build-docker /usr/bin/docker /usr/bin
22
32
COPY ip-util-check /usr/bin
23
33
CMD [ "/usr/bin/ip-util-check" ]
0 commit comments