From e81f6aeed02d0929caa5026f461162aafeb6ef64 Mon Sep 17 00:00:00 2001 From: Matt Keeler Date: Wed, 17 Apr 2019 12:21:24 -0400 Subject: [PATCH] Update Consul-Dev.dockerfile (#5678) This was putting the new binary on the wrong path so this wasn't updating the docker image in any effectual way. --- build-support/docker/Consul-Dev.dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-support/docker/Consul-Dev.dockerfile b/build-support/docker/Consul-Dev.dockerfile index fdde521b4f..2ecddb8c1b 100644 --- a/build-support/docker/Consul-Dev.dockerfile +++ b/build-support/docker/Consul-Dev.dockerfile @@ -1,3 +1,3 @@ ARG CONSUL_IMAGE_VERSION=latest FROM consul:${CONSUL_IMAGE_VERSION} -COPY consul /go +COPY consul /bin/consul