first
Some checks failed
Deploy NestJS API / build-and-push-deploy (push) Failing after 7s

This commit is contained in:
2026-01-02 18:37:24 -05:00
parent 7a9a40e859
commit dfd6c0ef8a
2 changed files with 3 additions and 3 deletions

View File

@@ -25,4 +25,4 @@ jobs:
- name: Notificar Portainer via Webhook
run: |
# O Webhook avisa o Portainer para puxar a nova imagem imediatamente
curl -X POST "${{ secrets.PORTAINER_WEBHOOK_URL }}"
curl -X POST "${{ secrets.PORTAINER_WEBHOOK_VENDAWEBAPI }}"

View File

@@ -1,5 +1,5 @@
# Estágio 1: Build
FROM node:16-slim AS builder
FROM node:16
WORKDIR /app
COPY package*.json ./
@@ -7,7 +7,7 @@ RUN npm install --legacy-peer-deps
COPY . .
RUN npm run build
FROM node:16-slim
FROM node:16
# Instalar dependências do Oracle
RUN apt-get update && apt-get install -y \