browsers/Dockerfile
bcarlin 5ce9cd108a
All checks were successful
build image / build (push) Successful in 3m13s
Fixup!
2025-01-05 19:31:19 +01:00

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