erikschul

Results 71 comments of erikschul

In theory, yes, but we'd have to maintain an additional image with everything else added, like Go, Node, Python, GitHub Runners, and we'd have to learn Fedora to do that...

**For MacOS users:** I solved this temporarily using ``` sudo sysctl -w kern.sysv.shmall=65536 sudo sysctl -w kern.sysv.shmmax=16777216 ``` Reference: - https://www.spinics.net/lists/fio/msg09937.html

Is there no progress on this?

I'm trying to run in Kubernetes with a non-root user, but I get `permission denied` errors. I think I solved it by using `/zot/` instead, but now I'm experiencing an...

Example dockerfile: https://github.com/docker-library/postgres/blob/master/Dockerfile-debian.template - useradd - chmod

It would be complicated to make this reproducible by the bot. Do you require that? e.g. require fetch to download the extension, ability to extract to local files, then run...

@OrKoN Thanks, I should have covered that in the initial report: The problem is specifically the combination of `--load-extension` and `--remote-debugging-port`, and it only crashes when you connect to the...

Server code: ``` const puppeteer = require("puppeteer-core") function sleep(ms) { return new Promise((resolve) => setTimeout(resolve, ms)) } ;(async () => { let extension = "/workspace/ublock/1.54.0_0/" browser = await puppeteer.launch({ args:...

@OrKoN Unfortunately there is no Chrome build for arm64 deployments. But maybe that's part of the problem as well, i.e. an architecture-specific bug. If I remember correctly, I'm using `/usr/bin/chromium`...

For example, `npx @puppeteer/browsers install chrome@stable` installs the x64 version. It doesn't seem that linux-arm64 is supported? `npx @puppeteer/browsers install --help` ``` ... --platform Platform that the binary needs to...