diff --git a/consul/Dockerfile b/consul/Dockerfile index 2c78013..f58fb3f 100644 --- a/consul/Dockerfile +++ b/consul/Dockerfile @@ -26,8 +26,6 @@ RUN buildDeps=' \ ' \ set -x \ && apk --no-cache add --repository https://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \ - && go get github.com/Soulou/curl-unix-socket \ - && mv /go/bin/curl-unix-socket /usr/bin/ \ && mkdir -p /go/src/github.com/hashicorp /etc/consul.d \ && git clone --depth 1 --branch ${CONSUL_VERSION} https://github.com/hashicorp/consul /go/src/github.com/hashicorp/consul \ && cd /go/src/github.com/hashicorp/consul \ diff --git a/terraform/Dockerfile b/terraform/Dockerfile index ddd6e83..e1bc00a 100644 --- a/terraform/Dockerfile +++ b/terraform/Dockerfile @@ -22,8 +22,6 @@ RUN buildDeps=' \ ' \ set -x \ && apk --no-cache add --repository https://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \ - && go get github.com/Soulou/curl-unix-socket \ - && mv /go/bin/curl-unix-socket /usr/bin/ \ && mkdir -p /go/src/github.com/hashicorp /etc/terraform.d \ && git clone --depth 1 --branch ${TERRAFORM_VERSION} https://github.com/hashicorp/terraform /go/src/github.com/hashicorp/terraform \ && cd /go/src/github.com/hashicorp/terraform \