7 lines
279 B
Docker
7 lines
279 B
Docker
FROM golang:1.20
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
rsync libssl-dev postgresql sudo redis-server \
|
|
&& 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.51.1
|