fix: use busybox-compatible find (no -ls flag)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alejandro Martinez
2026-04-07 15:04:08 +02:00
parent 00aa075d47
commit 487f60e275

View File

@@ -5,7 +5,7 @@ RUN corepack enable pnpm
COPY package.json pnpm-lock.yaml ./ COPY package.json pnpm-lock.yaml ./
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile
# Verify native binding was built # Verify native binding was built
RUN find node_modules -name "better_sqlite3.node" -ls RUN find node_modules -name "better_sqlite3.node" && echo "--- binding found ---"
COPY . . COPY . .
RUN pnpm run build RUN pnpm run build
# Keep only build tools cleanup that won't remove sqlite-libs # Keep only build tools cleanup that won't remove sqlite-libs