diff options
author | paulrbr-fl <43074087+paulrbr-fl@users.noreply.github.com> | 2019-02-08 10:23:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-08 10:23:16 +0100 |
commit | 72d49da37ad26422e33444408b3a83c4b5f4cc05 (patch) | |
tree | e94c06c03b75a186b202a446d4f523dcf6601099 | |
parent | 4e7c52141ab2170730089e93fb732aa1baba1b2f (diff) | |
download | docker-puppeteer-72d49da37ad26422e33444408b3a83c4b5f4cc05.tar.gz docker-puppeteer-72d49da37ad26422e33444408b3a83c4b5f4cc05.tar.zst docker-puppeteer-72d49da37ad26422e33444408b3a83c4b5f4cc05.zip |
Add `make` to the list of system dependencies
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -10,7 +10,7 @@ RUN apt-get update \ | |||
10 | && apt-get install -yq libgconf-2-4 \ | 10 | && apt-get install -yq libgconf-2-4 \ |
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 | && apt-get install -y wget --no-install-recommends \ | 13 | && apt-get install -y wget make --no-install-recommends \ |
14 | && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ | 14 | && wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \ |
15 | && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ | 15 | && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list' \ |
16 | && apt-get update \ | 16 | && apt-get update \ |