jkoop/zig-deb
scripts and helper files that I use to create deb files of zig
Here is the script I use to create .deb
files from precompiled binaries of Zig, which I host on my apt packages server.
I am not endorsed by the Zig Software Foundation. I just like their project, and see that they aren't publishing .deb
files of their own.
sudo apt update
sudo apt install zig
FROM jkoop/zig:VERSION
RUN zig build-exe ...
# example
docker build --tag jkoop/zig:0.14.0 --build-arg VERSION=0.14.0 .