10 lines
331 B
Docker
10 lines
331 B
Docker
# A dev container.
|
|
|
|
FROM alpine:3.22
|
|
|
|
RUN apk add build-base git go sqlite shellcheck curl jq
|
|
RUN apk add docker
|
|
|
|
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin v2.0.2
|
|
RUN GOBIN=/usr/local/bin go install git.offline-twitter.com/offline-labs/gocheckout@v0.0.2
|