re-setup subproject kontor-vue

This commit is contained in:
2026-04-05 13:27:00 +02:00
parent ea39bbbe1d
commit bba417922c
78 changed files with 1831 additions and 9302 deletions
-14
View File
@@ -1,14 +0,0 @@
FROM node:22.18.0-bookworm-slim AS build
WORKDIR /app
ENV PATH=/app/node_modules/.bin:$PATH
COPY package.json /app/package.json
RUN npm install
RUN npm install -g @vue/cli
COPY . /app
RUN npm run build
FROM docker.io/library/nginx:1.29.0-alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]