This repository was archived by the owner on Jul 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ FROM alpine:3.6 AS wget
22RUN apk add --no-cache ca-certificates wget tar
33
44FROM wget AS docker
5- ARG DOCKER_VERSION=17.04 .0-ce
6- RUN wget -qO- https://get .docker.com/builds/Linux /x86_64/docker-${DOCKER_VERSION}.tgz | \
5+ ARG DOCKER_VERSION=17.09 .0-ce
6+ RUN wget -qO- https://download .docker.com/linux/static/stable /x86_64/docker-${DOCKER_VERSION}.tgz | \
77 tar -xvz --strip-components=1 -C /bin
88
99FROM wget AS cuberite
@@ -18,6 +18,8 @@ COPY . .
1818RUN go install
1919
2020FROM debian:jessie
21+ RUN apt-get update
22+ RUN apt-get install -y ca-certificates
2123COPY --from=dockercraft /go/bin/dockercraft /bin
2224COPY --from=docker /bin/docker /bin
2325COPY --from=cuberite /srv /srv
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import (
1414)
1515
1616const (
17- downloadURL = "https://get .docker.com/builds/Linux /x86_64/docker-"
17+ downloadURL = "https://download .docker.com/linux/static/stable /x86_64/docker-"
1818 rcDownloadURL = "https://test.docker.com/builds/Linux/x86_64/docker-"
1919)
2020
You can’t perform that action at this time.
0 commit comments