8 lines
221 B
Docker
8 lines
221 B
Docker
# A dev container.
|
|
|
|
FROM alpine:3.22
|
|
|
|
RUN apk add build-base git go sqlite shellcheck curl jq
|
|
|
|
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin v2.0.2
|