From 838c1de6e64607f001294e26604e2fef40e7c871 Mon Sep 17 00:00:00 2001 From: kurilova Date: Tue, 27 Jan 2026 12:24:39 +0000 Subject: [PATCH] Update dist path; remove alpine --- modules/ui/build.Dockerfile | 2 +- modules/ui/ui.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/ui/build.Dockerfile b/modules/ui/build.Dockerfile index 72ac1be6d..d020ad86a 100644 --- a/modules/ui/build.Dockerfile +++ b/modules/ui/build.Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # Image name: testrun/build-ui -FROM node:22-alpine as build +FROM node:22 as build # Set the working directory WORKDIR /modules/ui diff --git a/modules/ui/ui.Dockerfile b/modules/ui/ui.Dockerfile index 7ecb32dbd..c6d691f12 100644 --- a/modules/ui/ui.Dockerfile +++ b/modules/ui/ui.Dockerfile @@ -15,7 +15,7 @@ # Image name: testrun/ui FROM nginx@sha256:4c0fdaa8b6341bfdeca5f18f7837462c80cff90527ee35ef185571e1c327beac -COPY modules/ui/dist/ /usr/share/nginx/html +COPY modules/ui/dist/browser /usr/share/nginx/html EXPOSE 8080