adding new project pipelines

This commit is contained in:
2026-03-20 21:26:05 -03:00
parent 3938d1a2b9
commit 794e314fa7
6 changed files with 297 additions and 0 deletions

15
Mindforge.Web/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:22-alpine AS builder
ARG VITE_API_BASE_URL
ENV VITE_API_BASE_URL=${VITE_API_BASE_URL}
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]