diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f82dda8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:20 AS builder + +COPY . /brunsviga +WORKDIR /brunsviga + +RUN npm ci +RUN npm run build + +FROM nginx:mainline-alpine3.20-slim as runtime + +COPY --from=builder /brunsviga/dist /usr/share/nginx/html/