We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c544f0f commit 6901ee9Copy full SHA for 6901ee9
1 file changed
build/scripts/entrypoint.sh
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
#
3
-# Copyright (c) 2021-2024 Red Hat, Inc.
+# Copyright (c) 2021-2025 Red Hat, Inc.
4
# This program and the accompanying materials are made
5
# available under the terms of the Eclipse Public License 2.0
6
# which is available at https://www.eclipse.org/legal/epl-2.0/
@@ -22,5 +22,6 @@ libc=$(ldd /bin/ls | grep 'musl' | head -1 | cut -d ' ' -f1)
22
if [ -n "$libc" ]; then
23
/checode-linux-musl/node /checode-linux-musl/out/server-main.js --host "${CODE_HOST}" --port 3100
24
else
25
+ export LD_LIBRARY_PATH="/checode-linux-libc/ubi8/ld_libs:$LD_LIBRARY_PATH"
26
/checode-linux-libc/ubi8/node /checode-linux-libc/ubi8/out/server-main.js --host "${CODE_HOST}" --port 3100
27
fi
0 commit comments