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
+15
View File
@@ -0,0 +1,15 @@
FROM golang:1.26-bookworm
RUN apt-get update && \
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 && \
go version && node -v && npm -v && \
apt-get purge -y --auto-remove curl gnupg && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*