From 5fc761a3f1e40fbfd7259909fcb455bb18b8e689 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Mon, 26 Jan 2026 04:28:41 +0000 Subject: [PATCH] Add entrypoint script to configure API URL --- frontend/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 frontend/entrypoint.sh diff --git a/frontend/entrypoint.sh b/frontend/entrypoint.sh new file mode 100644 index 0000000..3a0a730 --- /dev/null +++ b/frontend/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/sh +sed -i "s|{{NEXT_PUBLIC_API_URL}}|${NEXT_PUBLIC_API_URL}|g" /app/public/env.js +exec "$@"