Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the version of goimports used in Dockerfile.dapper #182

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.dapper
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ FROM golang:1.20-alpine3.17 AS dapper
ARG ARCH=amd64

RUN apk -U add bash coreutils git gcc musl-dev docker-cli vim less file curl wget ca-certificates
# go imports version gopls/v0.9.5
# go imports version gopls/v0.11.0
# https://github.com/golang/tools/releases/latest
RUN go install golang.org/x/tools/cmd/goimports@8a9de1b095ae54649c1dc503f4f718779bddb55f
RUN go install golang.org/x/tools/cmd/goimports@611cff71b9afeb81ae6eb16c5ce9376c051b1828
RUN rm -rf /go/src /go/pkg

RUN if [ "${ARCH}" == "amd64" ]; then \
Expand Down