node/deps/openssl/config/Dockerfile
Michaël Zasso f84998d40b
deps: update OpenSSL gen container to Ubuntu 22.04
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>
2025-06-10 15:10:12 +02:00

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