Remix.run Logo
In-Browser Container Builds(ochagavia.nl)
29 points by wofo 2 days ago | 7 comments
utopiah 2 minutes ago | parent | next [-]

Interesting... but also the "power" from container is precisely that the description itself, i.e. the Dockerfile, is sufficient. So I'm not sure what the main advantage of either providing the image itself via a registry or providing just the Dockerfile with the base image to another registry then adding steps add.

thewisenerd 27 minutes ago | parent | prev | next [-]

> we brought down image creation time to mere seconds, even for images that were multiple GiB in size

this sounds interesting; for e.g., was wondering the other day if we could build images without actually pulling base images.. everytime we compile, we copy artifact(s) onto a multi-hundred MB base image which definitely doesn't need to be pulled everytime.

a_t48 19 minutes ago | parent [-]

You can, by using FUSE and lazy pulling files as they are opened. I'm working on doing this, myself.

saltamimi 29 minutes ago | parent | prev | next [-]

One of the neat things about something like this is that you could, in theory, do OS builds (think stuff like bootable containers) where you can, deterministically, configure an operating system to boot into all within the confines of your web browser.

We already have image builders for stuff like Talos Linux and Incus OS. This is not out of the realm of possibility.

mystifyingpoi 40 minutes ago | parent | prev | next [-]

> and we sometimes resign ourselves to the limitations of docker build and friends

What are the limitations of `docker build`?

phendrenad2 an hour ago | parent | prev [-]

I joked once that the future was dockerizing every single react component and running them in a wasm port of k8s... I hope that premonition isn't coming true!

lucideer an hour ago | parent [-]

I can't imagine this happening in reality (i.e. people wanting to do this for normal production applications), but after reading your comment I must admit I am very tempted to try it for purely esoteric reasons.