Initialize project without preview renderer

This commit is contained in:
2025-09-28 23:30:02 +02:00
commit 2852c88a77
16 changed files with 11459 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
# Build stage
FROM node:20-alpine AS build
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
# Production stage
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]