fix: add nodejs

This commit is contained in:
Morre 2023-07-27 23:18:58 +02:00
parent 0a095cf5b8
commit 6ce8491b3a
Signed by: morre
GPG Key ID: BFED22AA844DE3A8
1 changed files with 5 additions and 0 deletions

View File

@ -12,3 +12,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \
RUN curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor | tee /usr/share/keyrings/nodesource.gpg
COPY nodesource.list /etc/apt/sources.list.d/
# hadolint ignore=DL3008
RUN apt-get update && apt-get install --no-install-recommends -y \
nodejs \
&& rm -rf /var/lib/apt/lists/*