diff options
author | paulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com> | 2019-04-10 19:25:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-10 19:25:50 +0200 |
commit | 3dfe6cae203fea4ffe494d1f7cfc7b820db24060 (patch) | |
tree | 83e8a7b0f412667c5e2e5d691ed2de19fc7b3bc1 | |
parent | d181274c68649ae110a4f4baad8d350aaa824b7b (diff) | |
parent | a035b63203f02b5e10034aa3682b271f8493ba48 (diff) | |
download | docker-puppeteer-1.13.1.tar.gz docker-puppeteer-1.13.1.tar.zst docker-puppeteer-1.13.1.zip |
add git binary in the image
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 \ |