pool/gen/Dockerfile
Oliver Gugger e1b141d849
GitHub: remove docker image cache, set up golang
The docker build image cache seems to cause more problems and take
longer to load than it would take to build the image from scratch, so we
remove it.
Instead we make sure that we use the latest version of the 1.18 Golang
branch.
2022-08-04 14:43:08 +02:00

7 lines
181 B
Docker

FROM golang:1.18.5-bullseye
RUN go install github.com/golang/mock/mockgen@73266f9366fcf2ccef0b880618e5a9266e4136f4
WORKDIR /build
CMD ["/bin/bash", "-c", "go generate ./gen.go"]