build(deps): bump nodejs to 20.x & update node modules

This commit is contained in:
2024-02-27 14:26:12 +01:00
parent 19e15d3fe7
commit 6a9c2fd13f
4 changed files with 5209 additions and 6376 deletions

View File

@ -7,7 +7,7 @@ ARG https_proxy=
RUN apt-get update && apt-get install -y build-essential git bash curl
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - \
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - \
&& apt-get install -y nodejs
COPY . /src
@ -15,7 +15,7 @@ COPY . /src
WORKDIR /src
RUN cp -f misc/docker/config-patch.txt misc/release/config-patch.txt \
&& npm install \
&& npm ci \
&& make ARCH_TARGETS=amd64 release
FROM busybox