Skip to content
Snippets Groups Projects
Commit ff9990c9 authored by Kawtar Laariche's avatar Kawtar Laariche
Browse files

fix configure app to support deployment under /v2 path

parent 1eb58cd9
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,9 @@ RUN npm install
COPY . .
# Build the Angular app
RUN npx ng build --base-href=/v2/ --configuration=prod
ARG BASE_HREF="/v2/"
RUN npx ng build --configuration=production --base-href=${BASE_HREF}
#RUN npm run ng -- build --configuration=dev02
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment