browsers/Dockerfile
bcarlin 0ec291f324
All checks were successful
build image / build (push) Successful in 7m33s
fix: add yarn to the image
2025-01-06 01:21:12 +01:00

13 lines
387 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/*