...

Text file src/cdr.dev/slog/ci/image/Dockerfile

Documentation: cdr.dev/slog/ci/image

     1FROM golang:1
     2
     3RUN apt-get update && \
     4    apt-get install -y npm
     5
     6ENV GOFLAGS="-mod=readonly"
     7ENV PAGER=cat
     8ENV CI=true
     9ENV MAKEFLAGS="--jobs=8 --output-sync=target"
    10
    11RUN npm install -g prettier
    12RUN go install golang.org/x/tools/cmd/goimports@latest
    13RUN go install golang.org/x/lint/golint@latest
    14RUN go install github.com/mattn/goveralls@latest

View as plain text