github.com/quickfeed/quickfeed@v0.0.0-20240507093252-ed8ca812a09c/ci/testdata/Dockerfile (about)

     1  FROM golang:1.19-alpine
     2  
     3  # Install bash and git (and build-base to get gcc)
     4  # (this is required when building FROM: golang:alpine)
     5  RUN apk update && apk add --no-cache git bash build-base
     6  RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.41.1
     7  
     8  WORKDIR /quickfeed