feat: update Docker configuration and CI/CD workflows for local image builds
Some checks failed
CI / Backend Tests (pull_request) Failing after 11m8s
CI / Frontend Tests (pull_request) Has been cancelled

This commit is contained in:
2026-03-27 16:01:34 -03:00
parent 06112330b6
commit 3f0bb4be73
5 changed files with 41 additions and 19 deletions

View File

@@ -20,9 +20,7 @@ services:
# ── Backend (Spring Boot) ────────────────────────────────────────────────────
backend:
build:
context: ./backend
dockerfile: Dockerfile
image: condado-newsletter-backend:latest
restart: always
depends_on:
postgres:
@@ -55,11 +53,7 @@ services:
# ── Frontend + Nginx ─────────────────────────────────────────────────────────
nginx:
build:
context: ./frontend
dockerfile: Dockerfile
args:
VITE_API_BASE_URL: ${VITE_API_BASE_URL}
image: condado-newsletter-frontend:latest
restart: always
ports:
- "80:80"