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
+15 -1
View File
@@ -1,7 +1,21 @@
FROM golang:1.26-bookworm
ARG GOLANGCI_LINT_VERSION=v2.12.2
RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates curl gnupg bash git jq && \
apt-get install -y --no-install-recommends \
ca-certificates \
gnupg \
bash \
git \
curl \
wget \
jq \
zip \
unzip \
file \
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 && \