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
+16 -1
View File
@@ -1,4 +1,19 @@
FROM golang:1.26-alpine
ARG GOLANGCI_LINT_VERSION=v2.12.2
RUN apk add --no-cache nodejs npm bash git ca-certificates curl jq
RUN apk add --no-cache \
nodejs \
npm \
bash \
git \
ca-certificates \
curl \
wget \
jq \
zip \
unzip \
file \
tar \
gzip \
xz \
rsync
RUN curl -sSfL https://golangci-lint.run/install.sh | sh -s -- -b /usr/local/bin ${GOLANGCI_LINT_VERSION}