Fix: Eliminar --no-cache del docker build para mejorar velocidad
Some checks failed
build-and-deploy / build (push) Successful in 9s
build-and-deploy / deploy (push) Has been cancelled

This commit is contained in:
2025-10-16 20:05:19 -06:00
parent d36138f9bd
commit 1bf8d14df6

View File

@@ -23,7 +23,7 @@ jobs:
- name: Build+push ${{ vars.APP_NAME }}
run: |
cd nuxt4
docker build --no-cache -t $REG/${{ github.repository_owner }}/$APP_NAME:${{ github.sha }} -t $REG/${{ github.repository_owner }}/$APP_NAME:latest .
docker build -t $REG/${{ github.repository_owner }}/$APP_NAME:${{ github.sha }} -t $REG/${{ github.repository_owner }}/$APP_NAME:latest .
docker push $REG/${{ github.repository_owner }}/$APP_NAME:${{ github.sha }}
docker push $REG/${{ github.repository_owner }}/$APP_NAME:latest