From 5aa54dbd86cc53358a156365a7c243cea20d3111 Mon Sep 17 00:00:00 2001 From: Darko Gjorgjijoski <5760249+gdarko@users.noreply.github.com> Date: Mon, 8 Sep 2025 17:52:33 +0200 Subject: [PATCH] Fix docker asset url (#472) --- docker/production/inject.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/production/inject.sh b/docker/production/inject.sh index 03acb88f..24f9e222 100644 --- a/docker/production/inject.sh +++ b/docker/production/inject.sh @@ -23,6 +23,9 @@ fi if [ "$APP_URL" != '' ]; then replace_or_insert "APP_URL" "$APP_URL" fi +if [ "$ASSET_URL" != '' ]; then + replace_or_insert "ASSET_URL" "$ASSET_URL" +fi if [ "$APP_DIR" != '' ]; then replace_or_insert "APP_DIR" "$APP_DIR" fi