cmall changes:

This commit is contained in:
2026-04-23 18:20:26 +03:00
parent 37520e62f3
commit be12b810ad
6 changed files with 43 additions and 10 deletions
+13 -2
View File
@@ -1,4 +1,15 @@
FROM node:24-bookworm-slim
FROM python:3.14-slim-bookworm
RUN apt-get update && \
apt-get install -y --no-install-recommends python3 python3-pip python3-venv git ca-certificates && \
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git && \
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 purge -y --auto-remove curl gnupg && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*