zip, unzip, wget, tar, gzip, xz, rsync

This commit is contained in:
2026-05-06 17:57:19 +03:00
parent b5e10495fe
commit d2288c3fbd
7 changed files with 109 additions and 7 deletions
+16 -1
View File
@@ -1,5 +1,20 @@
FROM node:24-bookworm-slim
RUN apt-get update && \
apt-get install -y --no-install-recommends docker.io bash git ca-certificates curl gnupg jq && \
apt-get install -y --no-install-recommends \
docker.io \
bash \
git \
ca-certificates \
gnupg \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz-utils \
rsync && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*