19 lines
261 B
Docker
19 lines
261 B
Docker
FROM node:24-alpine AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
FROM nginx:latest
|
|
|
|
COPY --from=builder /app/build /usr/share/nginx/html
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |