browsers/Dockerfile
bcarlin 4afcc5f68c
Some checks failed
build image / build (push) Has been cancelled
fix: add yarn to the image
2025-01-05 19:30:54 +01:00

14 lines
No EOL
386 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 yarn \
git \
&& rm -rf /var/lib/apt/lists/*
³