fix(releasing): fix borked SVN-based image building process (#32151)

Signed-off-by: hainenber <dotronghai96@gmail.com>
This commit is contained in:
Đỗ Trọng Hải
2025-02-05 23:06:21 +07:00
committed by GitHub
parent c7c3b1b0e9
commit ea5879bf2b
2 changed files with 11 additions and 10 deletions

View File

@@ -35,7 +35,7 @@ RUN apt-get install -y build-essential libssl-dev \
# Install nodejs for custom build
# https://nodejs.org/en/download/package-manager/
RUN set -eux; \
curl -sL https://deb.nodesource.com/setup_18.x | bash -; \
curl -sL https://deb.nodesource.com/setup_20.x | bash -; \
apt-get install -y nodejs; \
node --version;
RUN if ! which npm; then apt-get install -y npm; fi