docker build -t ziglang .docker run -it --rm ziglangGo to the application directory and use zig in docker to build and run your application. For example. Create a hello-world program and run it with docker.
echo'const std = @import("std");pub fn main() void { std.debug.print("Hello, world!\n", .{});}'> hello.zigNow, run your hello-world program.
docker run -it --rm -v $PWD:/opt/app ziglang zig run hello.zig