Skip to content

Commit e3efa7c

Browse files
committed
fix: update Playwright cache path in build info output
- Change build log check from /root/.cache/ms-playwright to /opt/ms-playwright - Ensures build output correctly shows pre-installed Chromium browsers - Prevents misleading "(not found)" messages in CI logs 🤖 Generated with [Lingma][https://lingma.aliyun.com]
1 parent f497dae commit e3efa7c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docker/Dockerfile.full

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ RUN echo "========================================" && \
225225
echo "UV version: $(uv --version)" && \
226226
echo "Nginx version: $(nginx -v 2>&1)" && \
227227
echo "Playwright browsers:" && \
228-
ls -la /root/.cache/ms-playwright/ 2>/dev/null || echo " (not found)" && \
228+
ls -la /opt/ms-playwright/ 2>/dev/null || echo " (not found)" && \
229229
echo "========================================"
230230

231231
# 15. Set entrypoint

0 commit comments

Comments
 (0)