diff --git a/Dockerfile.Service.arm b/Dockerfile.Service.arm index 8d30d1a9e..3e85ce484 100644 --- a/Dockerfile.Service.arm +++ b/Dockerfile.Service.arm @@ -1,4 +1,4 @@ -FROM node:slim AS build-node +FROM node AS build-node WORKDIR /app COPY ASF-ui . RUN echo "Node.js: $(node --version)" && \ diff --git a/Dockerfile.Service.x64 b/Dockerfile.Service.x64 index c84b37813..ed79f5509 100644 --- a/Dockerfile.Service.x64 +++ b/Dockerfile.Service.x64 @@ -1,4 +1,4 @@ -FROM node:slim AS build-node +FROM node AS build-node WORKDIR /app COPY ASF-ui . RUN echo "Node.js: $(node --version)" && \ diff --git a/Dockerfile.arm b/Dockerfile.arm index f36c252b8..4a99fa2c3 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -1,4 +1,4 @@ -FROM node:slim AS build-node +FROM node AS build-node WORKDIR /app COPY ASF-ui . RUN echo "Node.js: $(node --version)" && \ diff --git a/Dockerfile.x64 b/Dockerfile.x64 index 9faeb8092..7252c3d41 100644 --- a/Dockerfile.x64 +++ b/Dockerfile.x64 @@ -1,4 +1,4 @@ -FROM node:slim AS build-node +FROM node AS build-node WORKDIR /app COPY ASF-ui . RUN echo "Node.js: $(node --version)" && \