### STAGE 1: Build ### FROM docker.io/node:22-alpine AS build WORKDIR /app COPY package.json package-lock.json ./ RUN npm install COPY . . RUN npm run build ### STAGE 2: Run ### FROM docker.io/library/nginx:stable-alpine COPY nginx.conf /etc/nginx/conf.d/default.conf COPY --from=build /app/dist/kontor-angular/browser /usr/share/nginx/html EXPOSE 80 CMD ["nginx", "-g", "daemon off;"]