Skip to content

Commit 34042b8

Browse files
authored
[misc] devcontainer Dockerfile: pin gopls to v0.18.1 (latest that supports golang 1.23) (#4240)
Container will fail to build with newer versions of gopls unless golang is updated to 1.24. The latest stable version supporting 1.23 is gopls v0.18.1
1 parent a72ef1a commit 34042b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
99
libayatana-appindicator3-dev=0.5.5-2+deb11u2 \
1010
&& apt-get clean \
1111
&& rm -rf /var/lib/apt/lists/* \
12-
&& go install -v golang.org/x/tools/gopls@latest
12+
&& go install -v golang.org/x/tools/gopls@v0.18.1
1313

1414

1515
WORKDIR /app

0 commit comments

Comments
 (0)