16 lines
486 B
Docker
16 lines
486 B
Docker
# Estágio de Build
|
|
FROM bitnami/node:22 as build-stage
|
|
RUN apt-get update && apt-get upgrade -y && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /app
|
|
COPY package*.json ./
|
|
RUN npm install --frozen-lockfile || npm install
|
|
COPY . .
|
|
RUN npm run build
|
|
|
|
# Estágio de Produção
|
|
FROM nginxinc/nginx-unprivileged:alpine as production-stage
|
|
RUN apk update && apk upgrade --no-cache
|
|
COPY --from=build-stage /app/dist /usr/share/nginx/html
|
|
EXPOSE 8080
|
|
CMD ["nginx", "-g", "daemon off;"]
|