docs: implement Antigravity global rules

This commit is contained in:
2026-04-03 21:11:05 +00:00
parent bcbc5b851e
commit bd9592eb73
4 changed files with 126 additions and 102 deletions

View File

@@ -1,5 +1,6 @@
# Estágio de Build
FROM node:20-alpine as build-stage
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
@@ -7,7 +8,8 @@ COPY . .
RUN npm run build
# Estágio de Produção
FROM nginx:stable-alpine as production-stage
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 80
EXPOSE 8080
CMD ["nginx", "-g", "daemon off;"]