All checks were successful
Deploy to Server / deploy (push) Successful in 1m20s
14 lines
328 B
Docker
14 lines
328 B
Docker
# ---- Build stage ----
|
|
FROM node:22-alpine AS builder
|
|
WORKDIR /app
|
|
COPY package.json package-lock.json* ./
|
|
RUN npm install && npm audit fix
|
|
COPY . .
|
|
RUN npx vite build
|
|
|
|
# ---- Serve stage ----
|
|
FROM nginx:1.27-alpine
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 5173
|