Ask HN: Why does Zig make Docker irrelevant
1–10 of 14 posts
Re: Ask HN: Why does Zig make Docker irrelevant
#2- Wrong zig version... Ooops
Docker is (also) useful because you can declare all your system dependencies, no programing language alone can do that.
That said Docker is more or less useful depending on the language. If you need many system libs or external software for test / deploy, it's a god send.
I've been playing with Zig for a few months... Don't have a strong opinion, but I generally use containers for dev and CI.
Re: Ask HN: Why does Zig make Docker irrelevant
#3Zig is a meme language that will never break obscurity. Last time I checked it transpiles to C which makes it hard to take seriously.
D is the only one of these C++ replacement languages I respect. Unlike Rust, it's compatible with C and isn't dependent on llvm which I can only suspect adds bloat.
Unfortunately, even 20 odd years later I don't see much adoption. Corporate backing helps the most, but I honestly think hipster sounding titles like Zig, Rust, and Go play some part in this.
I'm gonna develop a programming language called Chai and the C transpiler wl be called Matcha with some anime girl mascot.
Re: Ask HN: Why does Zig make Docker irrelevant
#4Re: Ask HN: Why does Zig make Docker irrelevant
#5The "irrelevant" part is questionable and based on the author's thinking at the time, not gospel.
Re: Ask HN: Why does Zig make Docker irrelevant
#6If you were going to put a Zig application into a Dockerfile you could use `FROM scratch`.
Of course you may have other uses for Docker, that's fine. This text is for people coming from e.g. Go or Python where the reflex is to unconditionally use Docker. When using Zig this should be questioned.
Re: Ask HN: Why does Zig make Docker irrelevant
#7Im not sure, it's a weird thing to say. I don't t think there's anything about the language that even specializes in containers more than any another general purpose one. Zig is a meme language that will never break obscurity. Last time I checked it transpiles to C which makes it hard to take seriously. D is the only one of these C++ replacement languages I respect. Unlike Rust, it's compatible with C and isn't depen…
Zig never did this. Are you thinking of a different language?
Re: Ask HN: Why does Zig make Docker irrelevant
#8Im not sure, it's a weird thing to say. I don't t think there's anything about the language that even specializes in containers more than any another general purpose one. Zig is a meme language that will never break obscurity. Last time I checked it transpiles to C which makes it hard to take seriously. D is the only one of these C++ replacement languages I respect. Unlike Rust, it's compatible with C and isn't depen…
> Last time I checked it transpiles to C which makes it hard to take seriously. Zig never did this. Are you thinking of a different language?
Re: Ask HN: Why does Zig make Docker irrelevant
#9Im not sure, it's a weird thing to say. I don't t think there's anything about the language that even specializes in containers more than any another general purpose one. Zig is a meme language that will never break obscurity. Last time I checked it transpiles to C which makes it hard to take seriously. D is the only one of these C++ replacement languages I respect. Unlike Rust, it's compatible with C and isn't depen…
Re: Ask HN: Why does Zig make Docker irrelevant
#10I wrote that text. People were unnecessarily trying to use Docker in order to build their Zig applications and so this is a dramatic way to point out that you don't need to do that because you can make them statically compiled and thus run in any Linux environment. That GitHub repository is only for creating Drone CI images. If you were going to put a Zig application into a Dockerfile you could use `FROM scratch`. Of…