2023-04-13 04:41:49 +00:00
|
|
|
FROM debian:bullseye-slim
|
|
|
|
|
|
|
|
RUN apt update && \
|
2023-04-13 05:14:18 +00:00
|
|
|
apt install --yes curl fakeroot ca-certificates gettext git binutils xz-utils bzip2 zstd unzip && \
|
2023-04-13 04:41:49 +00:00
|
|
|
apt clean && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|