Getting this error using the playwright extension during deployment. Running on v4-beta.27. Can confirm this is only for chrome, I tried deploying with Firefox and got no errors with it.
10 | RUN INSTALL_DIR=$(grep "Install location:" /tmp/chromium-info.txt | cut -d':' -f2- | xargs) && DIR_NAME=$(basename "$INSTALL_DIR") && if [ -z "$DIR_NAME" ]; then echo "Failed to extract installation directory for chromium"; exit 1; fi && MS_DIR="/ms-playwright/$DIR_NAME" && mkdir -p "$MS_DIR"
11 | RUN DOWNLOAD_URL=$(grep "Download url:" /tmp/chromium-info.txt | cut -d':' -f2- | xargs | sed "s/mac-arm64/linux/g" | sed "s/mac-15-arm64/ubuntu-20.04/g") && if [ -z "$DOWNLOAD_URL" ]; then echo "Failed to extract download URL for chromium"; exit 1; fi && echo "Downloading chromium from $DOWNLOAD_URL" && curl -L -o /tmp/chromium.zip "$DOWNLOAD_URL" && if [ $? -ne 0 ]; then echo "Failed to download chromium"; exit 1; fi && unzip -q /tmp/chromium.zip -d "/ms-playwright/$(basename $(grep "Install location:" /tmp/chromium-info.txt | cut -d':' -f2- | xargs))" && if [ $? -ne 0 ]; then echo "Failed to extract chromium"; exit 1; fi && chmod -R +x "/ms-playwright/$(basename $(grep "Install location:" /tmp/chromium-info.txt | cut -d':' -f2- | xargs))" && rm /tmp/chromium.zip
--------------------
ERROR: failed to solve: process "/bin/sh -c grep -A5 \"browser: chromium-headless-shell\" /tmp/browser-info.txt > /tmp/chromium-info.txt" did not complete successfully: exit code: 1