browsers/Dockerfile
Bruno Carlin 149046ec0b
All checks were successful
build image / build (push) Successful in 9m17s
fix(image): base on debian
2025-01-07 23:57:12 +01:00

16 lines
437 B
Docker

FROM debian: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 \
nodejs yarnpkg \
git \
&& rm -rf /var/lib/apt/lists/* \
&& ln -s /usr/bin/yarnpkg /usr/bin/yarn