From 67681b1d83288966bdffbf991d0339174c70ee00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E4=B8=96=E5=86=9B?= <30999793+AllForNothing@users.noreply.github.com> Date: Tue, 10 Aug 2021 09:14:46 +0800 Subject: [PATCH] update node version for portal container (#15396) Signed-off-by: AllForNothing --- make/photon/portal/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/photon/portal/Dockerfile b/make/photon/portal/Dockerfile index ef04aa59a..a15c00013 100644 --- a/make/photon/portal/Dockerfile +++ b/make/photon/portal/Dockerfile @@ -1,13 +1,13 @@ ARG harbor_base_image_version ARG harbor_base_namespace -FROM node:15.4.0 as nodeportal +FROM node:16.5.0 as nodeportal WORKDIR /build_dir ARG npm_registry=https://registry.npmjs.org RUN apt-get update \ - && apt-get install -y --no-install-recommends python-yaml=3.12-1 + && apt-get install -y --no-install-recommends python-yaml COPY src/portal/package.json /build_dir COPY src/portal/package-lock.json /build_dir