File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,13 @@ COPY package.json package-lock.json webpack.config.js ./
2020# Install dependencies
2121RUN npm --no-optional --no-audit --progress=false --arch=${TARGET_ARCH} --platform=${TARGET_PLATFORM} install
2222
23- # Run webpack, passing the TARGET_ARCH environment variable
24- # Webpack config will use this to create arch-specific output
23+ # --- TEMPORARY DEBUG STEP ---
24+ # List the FULL contents of the sharp directory AFTER install
25+ RUN echo ">>> Listing FULL contents of /build/node_modules/sharp/ after install <<<" && \
26+ ls -lR /build/node_modules/sharp/ || echo "Sharp directory listing failed?"
27+ # --- END TEMPORARY DEBUG STEP ---
28+
29+ # Run webpack (this will likely still error, but we need the listing first)
2530RUN TARGET_ARCH=${TARGET_ARCH} node ./node_modules/webpack/bin/webpack.js
2631
2732# --- Smoke Test ---
You can’t perform that action at this time.
0 commit comments