Skip to content

Commit

Permalink
ci/container: Fix for newer Go
Browse files Browse the repository at this point in the history
  • Loading branch information
nhooyr committed Sep 28, 2023
1 parent 53a8a9c commit 395a71c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ci/container/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ RUN apt-get update
RUN apt-get install -y npm shellcheck chromium

ENV GO111MODULE=on
RUN go get golang.org/x/tools/cmd/goimports
RUN go get mvdan.cc/sh/v3/cmd/shfmt
RUN go get golang.org/x/tools/cmd/stringer
RUN go get golang.org/x/lint/golint
RUN go get github.com/agnivade/wasmbrowsertest
RUN go install golang.org/x/tools/cmd/goimports@latest
RUN go install mvdan.cc/sh/v3/cmd/shfmt@latest
RUN go install golang.org/x/tools/cmd/stringer@latest
RUN go install golang.org/x/lint/golint@latest
RUN go install github.com/agnivade/wasmbrowsertest@latest

RUN npm --unsafe-perm=true install -g prettier
RUN npm --unsafe-perm=true install -g netlify-cli

0 comments on commit 395a71c

Please sign in to comment.