mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
* fix(docker): switch Dockerfile.cli from Alpine to Debian slim Alpine uses musl libc which is incompatible with @ladybugdb/core's glibc-compiled native binary, causing ERR_DLOPEN_FAILED on startup. Closes #1008 * fix(docker): resolve build and runtime failures in Dockerfile.cli - Add **/*.tsbuildinfo to .dockerignore and rm -f tsbuildinfo in builder to prevent stale incremental cache from skipping gitnexus-shared compilation - Install libstdc++6 from Debian Trixie for @ladybugdb/core native module compatibility (requires GLIBCXX_3.4.31) * fix(docker): use node:22-trixie-slim for GLIBCXX_3.4.31 support Replaces the manual Trixie libstdc++6 backport with the official node:22-trixie-slim base image, which ships GCC 14 runtime natively.
21 lines
207 B
Text
21 lines
207 B
Text
.git
|
|
.gitignore
|
|
.DS_Store
|
|
|
|
node_modules
|
|
**/node_modules
|
|
|
|
dist
|
|
**/dist
|
|
coverage
|
|
**/coverage
|
|
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
**/*.tsbuildinfo
|
|
|
|
.gitnexus
|
|
gitnexus-web/playwright-report
|
|
gitnexus-web/test-results
|