From 386986ae5914cafa3e923f4195deaa6325dabf29 Mon Sep 17 00:00:00 2001 From: OxSaitama Date: Fri, 6 Oct 2023 15:37:47 +0200 Subject: [PATCH] fix puppeteer executable path --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 47615e13..d2b66fe9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,14 +2,14 @@ FROM node:18-bullseye-slim AS deps ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD true -ENV PUPPETEER_EXECUTABLE_PATH /usr/bin/chromium-browser +ENV PUPPETEER_EXECUTABLE_PATH /usr/bin/chromium WORKDIR leCoffre RUN npm install -D prisma@4.11.0 COPY package.json ./ -RUN apt update && apt install openssh-client git chromium-browser -y +RUN apt update && apt install openssh-client git chromium -y COPY id_rsa /root/.ssh/id_rsa RUN chmod 600 ~/.ssh/id_rsa