From 149046ec0bf4318fa1392a50800b394237f587e4 Mon Sep 17 00:00:00 2001 From: Bruno Carlin Date: Tue, 7 Jan 2025 23:57:12 +0100 Subject: [PATCH] fix(image): base on debian --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8c0c17c..08e06e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:latest +FROM debian:latest ARG DEBIAN_FRONTEND=noninteractive @@ -6,12 +6,11 @@ RUN apt-get update \ && apt-get install --yes apt-utils 2>&1 | grep -v "debconf: delaying package configuration, since apt-utils is not installed" \ && apt-get install --no-install-recommends --yes \ fontconfig \ - chromium-browser \ + chromium \ nodejs yarnpkg \ git \ && rm -rf /var/lib/apt/lists/* \ - && ln -s /usr/bin/yarnpkg /usr/bin/yarn \ - && ln -s /usr/bin/chromium-browser /usr/bin/chromium + && ln -s /usr/bin/yarnpkg /usr/bin/yarn