FILE / ScuroNeko/ActionRunners
go-alpine.Dockerfile
Исходный файл и его история в репозитории.
19 lines
358 B
Docker
19 lines
358 B
Docker
FROM golang:1.26-alpine
|
|
ARG GOLANGCI_LINT_VERSION=v2.12.2
|
|
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} |