From 8bdb4dee77f0cd0fb3d751c51fcbf8d1c5c67af9 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Wed, 1 Jul 2020 14:59:45 +0200 Subject: [PATCH] Remove debug stuff from web images, that is causing apt-get install issues --- tests/composefiles/aci-demo/web/Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/composefiles/aci-demo/web/Dockerfile b/tests/composefiles/aci-demo/web/Dockerfile index 341e5383c..2dd000aef 100644 --- a/tests/composefiles/aci-demo/web/Dockerfile +++ b/tests/composefiles/aci-demo/web/Dockerfile @@ -16,8 +16,6 @@ ENV PATH $PATH:/usr/local/go/bin COPY dispatcher.go . RUN go build dispatcher.go -RUN apt-get install curl && apt-get install dnsutils -y - EXPOSE 80 CMD ["/dispatcher"]