browsers/Dockerfile
Bruno Carlin 2db5a90b6b
All checks were successful
build image / build (push) Successful in 7m9s
fix(image): install chromium to /usr/bin/chromium
2025-01-06 02:01:34 +01:00

17 lines
504 B
Docker

FROM ubuntu:latest
ARG DEBIAN_FRONTEND=noninteractive
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 \
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