We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2168688 + 9e7f15a commit b7510faCopy full SHA for b7510fa
dockerfiles/zig-0.14.Dockerfile
@@ -1,8 +1,10 @@
1
# syntax=docker/dockerfile:1.7-labs
2
FROM debian:bookworm
3
4
-RUN apt-get update && apt-get install -y xz-utils \
5
- && rm -rf /var/lib/apt/lists/*
+RUN apt-get update && \
+ apt-get install --no-install-recommends -y xz-utils=5.4.1-1 && \
6
+ apt-get clean && \
7
+ rm -rf /var/lib/apt/lists/*
8
9
# Download and install Zig
10
RUN curl -O https://ziglang.org/download/0.14.0/zig-linux-x86_64-0.14.0.tar.xz \
0 commit comments