From 6eb014b4dedaff1a1dc00612fb6dd09c516d472a Mon Sep 17 00:00:00 2001 From: Griffin-Sullivan Date: Fri, 14 Feb 2025 12:09:59 -0500 Subject: [PATCH] Update node version in Dockerfile to 16.16-buster-slim Signed-off-by: Griffin-Sullivan --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5d671c2..ec4fa25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ COPY --from=fetch-kubeflow-kubeflow $BACKEND_LIB . RUN python setup.py sdist bdist_wheel # --- Build the frontend kubeflow library --- -FROM node:16-buster-slim AS frontend-kubeflow-lib +FROM node:16.16-buster-slim AS frontend-kubeflow-lib WORKDIR /src @@ -34,7 +34,7 @@ COPY --from=fetch-kubeflow-kubeflow $LIB/ ./ RUN npm run build # --- Build the frontend --- -FROM node:16-buster-slim AS frontend +FROM node:16.16-buster-slim AS frontend WORKDIR /src COPY ./frontend/package*.json ./