From 48c5cb48f73ea4b17f2d73abbee265e731939fa4 Mon Sep 17 00:00:00 2001 From: Wuesteon Date: Mon, 8 Dec 2025 16:37:18 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20add=20MIDDLEWARE=5FURL=20?= =?UTF-8?q?to=20manacore-web=20Dockerfile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add MIDDLEWARE_URL as build argument and environment variable for SvelteKit's $env/static/private at build time. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- apps/manacore/apps/web/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/manacore/apps/web/Dockerfile b/apps/manacore/apps/web/Dockerfile index 3310a6326..91418444c 100644 --- a/apps/manacore/apps/web/Dockerfile +++ b/apps/manacore/apps/web/Dockerfile @@ -3,9 +3,11 @@ FROM node:20-alpine AS builder # Build arguments for SvelteKit static env vars ARG PUBLIC_MANA_CORE_AUTH_URL=http://mana-core-auth:3001 +ARG MIDDLEWARE_URL=http://mana-core-middleware:3000 # Set as environment variables for build ENV PUBLIC_MANA_CORE_AUTH_URL=$PUBLIC_MANA_CORE_AUTH_URL +ENV MIDDLEWARE_URL=$MIDDLEWARE_URL # Install pnpm RUN corepack enable && corepack prepare pnpm@9.15.0 --activate