github.com/quickfeed/quickfeed@v0.0.0-20240507093252-ed8ca812a09c/testdata/courses/qf104-2022/tests/scripts/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 docker openrc 6 RUN wget -O- -nv https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.41.1 7 8 WORKDIR /quickfeed