aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorpaulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com>2019-04-10 19:25:50 +0200
committerGitHub <noreply@github.com>2019-04-10 19:25:50 +0200
commit3dfe6cae203fea4ffe494d1f7cfc7b820db24060 (patch)
tree83e8a7b0f412667c5e2e5d691ed2de19fc7b3bc1
parentd181274c68649ae110a4f4baad8d350aaa824b7b (diff)
parenta035b63203f02b5e10034aa3682b271f8493ba48 (diff)
downloaddocker-puppeteer-3dfe6cae203fea4ffe494d1f7cfc7b820db24060.tar.gz
docker-puppeteer-3dfe6cae203fea4ffe494d1f7cfc7b820db24060.tar.zst
docker-puppeteer-3dfe6cae203fea4ffe494d1f7cfc7b820db24060.zip
Merge pull request #3 from paulrbr-fl/add-git-binHEADv1.13.1master
add git binary in the image
-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 \