From 0ac87d160d4c00bfb2cd83c21710f436c96b6938 Mon Sep 17 00:00:00 2001 From: Alex Boyko Date: Fri, 5 Apr 2019 19:06:44 -0400 Subject: [PATCH] Use curl instead of wget --- concourse/docker/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/concourse/docker/Dockerfile b/concourse/docker/Dockerfile index 4313c0e59..1e987c3db 100644 --- a/concourse/docker/Dockerfile +++ b/concourse/docker/Dockerfile @@ -12,10 +12,6 @@ RUN apt-get update && apt-get install -y \ xvfb \ icewm -RUN apt-get update \ - && apt-get install -y wget \ - && rm -rf /var/lib/apt/lists/* - RUN curl -sL https://deb.nodesource.com/setup_8.x | bash - \ && apt-get install -y nodejs @@ -25,7 +21,7 @@ RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \ && apt-get install -y yarn # Install Google Chrome -RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - +RUN curl -sS - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - RUN sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' RUN apt-get update && apt-get install -y google-chrome-stable