From fe91e1461297373c6e63f2955b8c6f4da489f492 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sun, 5 Oct 2025 00:52:27 +0300 Subject: [PATCH] refactor: add build argument for VITE_BASE_PATH in Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e1dd737..8b1aae1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,8 @@ COPY ReleaseNotes.json ./ COPY Overview.json ./ # Build both frontend and backend +ARG APP_SUBFOLDER="" +ENV VITE_BASE_PATH=${APP_SUBFOLDER} RUN npm run build # Stage 2: Production image