File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 55! frontend /package-lock.json
66! frontend /tsconfig.app.json
77! frontend /tsconfig.json
8- ! frontend /src /**
8+ ! frontend /projects /**
99
1010! static /**
1111! nginx.conf
Original file line number Diff line number Diff line change 1- FROM node:22.11 as build
1+ FROM node:22.11 AS build
22
33COPY frontend/package.json frontend/package-lock.json /app/frontend/
44
@@ -10,7 +10,7 @@ RUN npm run build-prod
1010RUN npm run build:wc
1111
1212FROM nginx:alpine
13- COPY --from=build /app/frontend/dist/ /usr/share/nginx/html/ui/example-content
14- COPY --from=build /app/frontend/dist-wc/ /usr/share/nginx/html/ui/wc
13+ COPY --from=build /app/frontend/dist/ /usr/share/nginx/html/ui/
14+ COPY --from=build /app/frontend/dist-wc/ /usr/share/nginx/html/wc/
1515COPY nginx.conf /etc/nginx/nginx.conf
1616EXPOSE 8080
Original file line number Diff line number Diff line change 1212
1313 root /usr/share/nginx/html;
1414
15- location /ui/account- ui/ {
16- try_files $uri $uri / /ui/account- ui/index .html;
15+ location /ui/example-content/ ui/ {
16+ try_files $uri $uri / /ui/example-content/ ui/index .html;
1717 }
1818 }
1919}
You can’t perform that action at this time.
0 commit comments