yosifkit

Results 197 comments of yosifkit

I think the hardest part here is that this still doesn't cover the developer that wants to bind mount in their code so that they can edit it on their...

I don't think that a separate image is necessary. We should just document how this is possible. The user will already need to pull the regular node image in order...

That is what the deprecated [`onbuild`](https://github.com/nodejs/docker-node/blob/b7264ae67b1e87fc2f6e9930385316b79d13bb6e/8/onbuild/Dockerfile) images would do. Perhaps it needs to be dropped into the best practices doc (minus the `ONBUILD` keyword)? Or just update the Dockerfile in...

Can you reproduce with the Alpine-provided package? ```Dockerfile # make sure you are getting the arm32v7 image to have a valid comparison FROM arm32v7/alpine:3.14 RUN apk add --no-cache nodejs npm...

> Default alpine image stopped working from version 16-alpine on armv7 As noted earlier, the answer is to update `libseccomp` on the host: > Looks like one of the best...

Same causes as https://github.com/nodejs/docker-node/issues/1543 and https://github.com/nodejs/docker-node/issues/1589: newer system calls require an updated `libseccomp` or they get blocked. TL;DR: update `libseccomp` and possibly `docker`.

> Another option might be storing some metadata (perhaps in a json) We've actually started doing that in a few repos in `https://github.com/docker-library` like https://github.com/docker-library/php/pull/1052 and it's been super helpful....

Closing in favor of the newer, related changes in #2228

> 0.156 exec /bin/sh: exec format error I think this error is because GitHub actions runners aren't automatically setup with user-mode qemu like when using Docker Desktop. As far as...

Storing the already initialized database files in the images layers is not a great idea. Because it would be in a copy-on-write filesystem, the moment that you start a new...