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