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
+17 -1
View File
@@ -1,6 +1,22 @@
FROM python:3.14-bookworm
RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git build-essential pkg-config python3-dev jq && \
apt-get install -y --no-install-recommends \
ca-certificates \
gnupg \
bash \
git \
build-essential \
pkg-config \
python3-dev \
curl \
wget \
jq \
zip \
unzip \
tar \
gzip \
xz-utils \
rsync && \
mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \