Remix.run Logo
rfl890 19 hours ago

Just wondering, why did you make an entire container image instead of trying to compile it from source first?

simonw 19 hours ago | parent | next [-]

Mainly because I wanted an excuse to figure out how to package tools like this using Docker.

It also felt like a better way to distribute the tool for other people to use: I don't want to distribute a compiled binary (because in macOS you then need to sign it for other people to use it), but a Docker incantation skips that step.

VikingCoder 19 hours ago | parent | prev [-]

Because now I can use their Docker image trivially. They can also trivially use their Docker container on multiple computers, multiple VMs, multiple VPSs. They can Docker Compose it into other Docker images they're setting up, too.

I'm definitely not a Docker expert, but I've become a huge fan.