From 7c31b91470c3bf089d41d1f79062f28f97a36762 Mon Sep 17 00:00:00 2001 From: Ksawery Zietara Date: Thu, 22 Aug 2024 12:50:53 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index e8ccb1dbb..702bc5e5e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # Build UI static files FROM node:22.3.0 as ui-builder -WORKDIR /workspace +WORKDIR /btp-manager-workspace COPY ui/package.json ./ RUN npm install @@ -24,7 +24,7 @@ RUN go mod download COPY . ./ # Copy UI static files -COPY --from=ui-builder /workspace/build ui/build +COPY --from=ui-builder /btp-manager-workspace/build ui/build # Build # the GOARCH has not a default value to allow the binary be built according to the host where the command