diff --git a/Dockerfile.Service.arm b/Dockerfile.Service.arm index 1843881ea..8283585bb 100644 --- a/Dockerfile.Service.arm +++ b/Dockerfile.Service.arm @@ -1,4 +1,4 @@ -FROM node AS build-node +FROM node:lts AS build-node WORKDIR /app COPY ASF-ui . RUN echo "node: $(node --version)" && \ diff --git a/Dockerfile.Service.x64 b/Dockerfile.Service.x64 index e541788c8..f7879bef3 100644 --- a/Dockerfile.Service.x64 +++ b/Dockerfile.Service.x64 @@ -1,4 +1,4 @@ -FROM node AS build-node +FROM node:lts AS build-node WORKDIR /app COPY ASF-ui . RUN echo "node: $(node --version)" && \ diff --git a/Dockerfile.arm b/Dockerfile.arm index 0ef74cdd1..3b11c2190 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -1,4 +1,4 @@ -FROM node AS build-node +FROM node:lts AS build-node WORKDIR /app COPY ASF-ui . RUN echo "node: $(node --version)" && \ diff --git a/Dockerfile.x64 b/Dockerfile.x64 index 75136660f..8b54de8d2 100644 --- a/Dockerfile.x64 +++ b/Dockerfile.x64 @@ -1,4 +1,4 @@ -FROM node AS build-node +FROM node:lts AS build-node WORKDIR /app COPY ASF-ui . RUN echo "node: $(node --version)" && \