chore: docker container layout aangepast

De mappen zitten een laag dieper in de docker container zodat de MenuBar.vue code niet moest aangepast worden
This commit is contained in:
Timo De Meyst 2025-03-07 17:29:22 +01:00
parent 0995cba88c
commit 8890542f5e
2 changed files with 9 additions and 5 deletions

View file

@ -6,7 +6,9 @@ COPY ./backend/package*.json ./
RUN npm install
COPY ./backend .
COPY ./backend ./backend
WORKDIR /app/backend
EXPOSE 2002

View file

@ -1,13 +1,15 @@
# build stage
FROM node:22 as build-stage
FROM node:22 AS build-stage
WORKDIR /app
COPY ./frontend/package*.json ./
RUN npm install
COPY ./frontend .
COPY ./frontend ./frontend
COPY ./assets ./assets
WORKDIR /app/frontend
RUN npm run build
# production stage
FROM nginx:stable as production-stage
COPY --from=build-stage /app/dist /usr/share/nginx/html
FROM nginx:stable AS production-stage
COPY --from=build-stage /app/frontend/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]