13 lines
365 B
Text
13 lines
365 B
Text
|
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 \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|