A websocket implementation for zig
0

Configure Feed

Select the types of activity you want to include in your feed.

websocket.zig / Dockerfile
391 B 11 lines
1from ubuntu:latest 2run apt-get update && apt-get install -y wget xz-utils 3 4run wget "https://ziglang.org/builds/zig-linux-aarch64-0.14.0-dev.244+0d79aa017.tar.xz" 5run tar -xJvf zig-linux-aarch64-0.14.0-dev.244+0d79aa017.tar.xz && \ 6 mv /zig-linux-aarch64-0.14.0-dev.244+0d79aa017/ /zig && \ 7 chmod a+x /zig && \ 8 rm -fr /zig-* 9 10workdir /opt 11entrypoint ["/zig/zig", "build", "test"]