7 lines
239 B
Docker
7 lines
239 B
Docker
FROM golang:1.16
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
rsync \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.6
|