You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
394 B
20 lines
394 B
# Stage 1: Build Vite frontend
|
|
FROM node:22-alpine AS build
|
|
|
|
WORKDIR /app/frontend
|
|
|
|
COPY frontend/package*.json ./
|
|
RUN npm ci || npm install
|
|
|
|
COPY frontend ./
|
|
RUN npm run build
|
|
|
|
# Stage 2: Production Nginx server
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=build /app/frontend/dist /usr/share/nginx/html
|
|
COPY frontend/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|