browsers/Dockerfile

17 lines
437 B
Text
Raw Permalink Normal View History

2025-01-07 23:57:12 +01:00
FROM debian:latest
2025-01-05 04:03:09 +01:00
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 \
2025-01-07 23:57:12 +01:00
chromium \
2025-01-05 19:30:54 +01:00
nodejs yarnpkg \
2025-01-05 19:19:42 +01:00
git \
2025-01-05 19:30:54 +01:00
&& rm -rf /var/lib/apt/lists/* \
2025-01-07 23:57:12 +01:00
&& ln -s /usr/bin/yarnpkg /usr/bin/yarn
2025-01-05 19:30:54 +01:00
2025-01-05 04:03:09 +01:00