jq and curl

This commit is contained in:
2026-05-06 17:30:34 +03:00
parent 0b1ba393df
commit b5e10495fe
7 changed files with 17 additions and 12 deletions
+9 -2
View File
@@ -1,6 +1,13 @@
FROM python:3.14-bookworm
RUN apt-get update && \
apt-get install -y --no-install-recommends nodejs npm python3-dev \
git bash ca-certificates build-essential pkg-config && \
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git build-essential pkg-config python3-dev jq && \
mkdir -p /etc/apt/keyrings && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" \
> /etc/apt/sources.list.d/nodesource.list && \
apt-get update && \
apt-get install -y --no-install-recommends nodejs && \
python -V && node -v && npm -v && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*