FILE / ScuroNeko/ActionRunners

go-alpine.Dockerfile

Исходный файл и его история в репозитории.
FILE f0527843bf6df84f9878c7d2e649e3de93bf580d
Files
ActionRunners/go-alpine.Dockerfile
T

5 lines
266 B
Docker

FROM golang:1.26-alpine
ARG GOLANGCI_LINT_VERSION=v2.11.4
RUN apk add --no-cache nodejs npm bash git ca-certificates
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b /usr/local/bin ${GOLANGCI_LINT_VERSION}