aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 13994d2..773f572 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,7 +11,7 @@ RUN apt-get update \
11 # Install latest chrome dev package, which installs the necessary libs to 11 # Install latest chrome dev package, which installs the necessary libs to
12 # make the bundled version of Chromium that Puppeteer installs work. 12 # make the bundled version of Chromium that Puppeteer installs work.
13 # Also install system deps such as make, psmisc to have utily functions (such as fuser, peekfd) 13 # Also install system deps such as make, psmisc to have utily functions (such as fuser, peekfd)
14 && apt-get install -y wget make psmisc --no-install-recommends \ 14 && apt-get install -y wget make psmisc git --no-install-recommends \
15 && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ 15 && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
16 && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ 16 && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \
17 && apt-get update \ 17 && apt-get update \