From dfd6c0ef8a86d9e404669ee7bfafd5be750e47c0 Mon Sep 17 00:00:00 2001 From: simplifique Date: Fri, 2 Jan 2026 18:37:24 -0500 Subject: [PATCH] first --- .gitea/workflows/deploy-api.yaml | 2 +- Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy-api.yaml b/.gitea/workflows/deploy-api.yaml index 68a53b7..5de6b64 100644 --- a/.gitea/workflows/deploy-api.yaml +++ b/.gitea/workflows/deploy-api.yaml @@ -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 }}" \ No newline at end of file + curl -X POST "${{ secrets.PORTAINER_WEBHOOK_VENDAWEBAPI }}" \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 59bc96b..666cad4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \