From 469f5fbd85f08cf19ff0e29aa08e8a7f007e0230 Mon Sep 17 00:00:00 2001 From: Geoffrey Van Landeghem Date: Thu, 17 Dec 2020 12:42:47 +0100 Subject: [PATCH] fix puppeteer to 5.2.1 --- Dockerfile | 2 +- package.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b6b5fb..f160294 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && \ libxtst6 ca-certificates fonts-liberation libappindicator1 libnss3 lsb-release xdg-utils wget curl && \ rm -rf /var/lib/apt/lists/* -RUN npm install puppeteer markdown-it mustache markdown-it-named-headers cheerio markdown-it-highlightjs +RUN npm install puppeteer@5.2.1 markdown-it mustache markdown-it-named-headers cheerio markdown-it-highlightjs COPY makepdfs.js / COPY package.json / COPY template/ template/ diff --git a/package.json b/package.json index 64ead39..1c46d4d 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "dependencies": { - "puppeteer": "1.15.0", + "puppeteer": "5.2.1", "commander": "2.20.0", - "markdown-it": "11.0.0" + "markdown-it": "11.0.0", "markdown-it-highlightjs": "3.2.0" } }