fix env config
Some checks failed
Build and Publish / build-release (push) Failing after 50s

This commit is contained in:
2026-04-29 16:42:50 -05:00
parent f6b8ba3030
commit 9542a5373e
2 changed files with 11 additions and 11 deletions

View File

@@ -53,12 +53,12 @@
]; ];
config = { config = {
Cmd = [ "node" "/server/index.mjs" ]; Cmd = [ "node" "/server/index.mjs" ];
Env = { Env = [
NODE_ENV = "production"; "NODE_ENV=production"
PORT = "3000"; "PORT=3000"
HOST = "0.0.0.0"; "HOST=0.0.0.0"
NUXT_TELEMETRY_DISABLED = "1"; "NUXT_TELEMETRY_DISABLED=1"
}; ];
ExposedPorts = [ "3000/tcp" ]; ExposedPorts = [ "3000/tcp" ];
}; };
}; };