chore: update docker layout
Dockerfiles in root gezet zodat ze ook aan bestanden daarin kunnen
This commit is contained in:
parent
71f6b1b3cb
commit
0995cba88c
5 changed files with 8 additions and 13 deletions
|
@ -1,13 +0,0 @@
|
|||
# build stage
|
||||
FROM node:22 as build-stage
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
||||
# production stage
|
||||
FROM nginx:stable as production-stage
|
||||
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
CMD ["nginx", "-g", "daemon off;"]
|
Loading…
Add table
Add a link
Reference in a new issue