12 lines
267 B
Docker
12 lines
267 B
Docker
|
FROM debian:bookworm-slim
|
||
|
|
||
|
RUN true \
|
||
|
&& apt update \
|
||
|
&& apt install --yes \
|
||
|
curl fakeroot ca-certificates gettext \
|
||
|
git binutils xz-utils bzip2 zstd unzip \
|
||
|
python3 \
|
||
|
&& apt clean \
|
||
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|