Fix Limpieza de Images y Mensaje de Auditoria NPM
All checks were successful
Optimized Build and Deploy / remote-build-and-deploy (push) Successful in 4m2s

This commit is contained in:
2025-06-27 18:59:03 -03:00
parent dc52c9aff2
commit 95aa09d62a
2 changed files with 2 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ jobs:
# 4. Limpieza
echo "Realizando limpieza..."
rm -rf "$TEMP_DIR"
docker image prune -af --filter "until=24h"
docker image prune -f --filter "dangling=true"
echo "--- DESPLIEGUE COMPLETADO CON ÉXITO ---"
echo "Tiempo total: $(($SECONDS / 60)) minutos y $(($SECONDS % 60)) segundos"

View File

@@ -4,7 +4,7 @@ WORKDIR /app
# Copia solo dependencias primero para cachear
COPY Frontend/package.json Frontend/package-lock.json ./
RUN npm install --frozen-lockfile
RUN npm install --frozen-lockfile --no-audit
# Copia el resto del código
COPY Frontend/. .