Archived
13 lines
325 B
Docker
13 lines
325 B
Docker
FROM node:20-alpine AS build
|
|
WORKDIR /app
|
|
COPY package.json .
|
|
RUN npm install --no-audit --no-fund
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
FROM nginx:1.27-alpine
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
COPY --from=build /app/dist /usr/share/nginx/html
|
|
EXPOSE 5173
|
|
HEALTHCHECK CMD wget -q --spider http://localhost:5173/ || exit 1
|