From 487f60e27562169a90a6697dea3e75f6f949c3aa Mon Sep 17 00:00:00 2001 From: Alejandro Martinez Date: Tue, 7 Apr 2026 15:04:08 +0200 Subject: [PATCH] fix: use busybox-compatible find (no -ls flag) Co-Authored-By: Claude Opus 4.6 (1M context) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 37fa171..7c5d04d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ RUN corepack enable pnpm COPY package.json pnpm-lock.yaml ./ RUN pnpm install --frozen-lockfile # 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 . . RUN pnpm run build # Keep only build tools cleanup that won't remove sqlite-libs