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