From ba545632f5004754b096d4d930bc24834c22dec6 Mon Sep 17 00:00:00 2001 From: Ralf Vogler Date: Sat, 17 Dec 2022 00:27:15 +0100 Subject: [PATCH] docker: also install firefox --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e32481f..43269bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,9 +45,9 @@ RUN ln -s /usr/share/novnc/vnc_auto.html /usr/share/novnc/index.html WORKDIR /fgc COPY package*.json ./ -# Install chromium & dependencies only +# Install browser & dependencies only RUN npm install \ - && npx playwright install --with-deps chromium \ + && npx playwright install --with-deps firefox chromium \ && apt-get clean \ && rm -rf /var/lib/apt/lists/*