PR-URL: https://github.com/nodejs/node/pull/58432 Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: James M Snell <jasnell@gmail.com>
13 lines
335 B
Docker
13 lines
335 B
Docker
FROM ubuntu:22.04
|
|
|
|
VOLUME /node
|
|
|
|
RUN buildDeps='binutils build-essential vim nasm git' \
|
|
&& apt-get update \
|
|
&& apt-get install -y --no-install-recommends --force-yes $buildDeps \
|
|
&& apt-get clean \
|
|
&& apt-get autoremove -y \
|
|
&& cpan install Text::Template \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
WORKDIR /node
|