Skip to content

Commit b05b1ed

Browse files
authored
chore: update ubi9 base image; bump gopls (#247)
* chore: update ubi9 base image Signed-off-by: Valerii Svydenko <[email protected]> * chore: update gopls Signed-off-by: Valerii Svydenko <[email protected]> --------- Signed-off-by: Valerii Svydenko <[email protected]>
1 parent f1cf6ea commit b05b1ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ docker run -ti --rm \
142142
| `yarn` |`<via npm>` |
143143
|--------GO-----------|-------------------------------------|
144144
| `go` |`go-toolset` |
145-
| `gopls` |`golang.org/x/tools/gopls v0.16.2` |
145+
| `gopls` |`golang.org/x/tools/gopls v0.21.0` |
146146
|--------.NET---------|-------------------------------------|
147147
| `dotnet` |`dotnet-sdk-8.0` |
148148
|------PYTHON---------|-------------------------------------|

base/ubi9/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1.3-labs
22

33
# https://catalog.redhat.com/en/software/containers/ubi9/ubi/
4-
FROM registry.access.redhat.com/ubi9/ubi:9.6-1756915113
4+
FROM registry.access.redhat.com/ubi9/ubi:9.7-1764794285
55

66
ARG TARGETARCH
77
LABEL maintainer="Red Hat, Inc."

universal/ubi9/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ RUN curl -fLo mill https://raw.githubusercontent.com/lefou/millw/main/millw && \
125125
RUN dnf -y install llvm-toolset gcc gcc-c++ clang clang-libs clang-tools-extra gdb
126126

127127
# Go 1.22+ - installed to /usr/bin/go
128-
# gopls 0.16.2+ - installed to /home/tooling/go/bin/gopls and /home/tooling/go/pkg/mod/
128+
# gopls 0.21.0+ - installed to /home/tooling/go/bin/gopls and /home/tooling/go/pkg/mod/
129129
RUN dnf install -y go-toolset && \
130-
GO111MODULE=on go install -v golang.org/x/tools/gopls@v0.16.2 && \
130+
GO111MODULE=on go install -v golang.org/x/tools/gopls@v0.21.0 && \
131131
chgrp -R 0 /home/tooling && chmod -R g=u /home/tooling
132132
ENV GOBIN="/home/tooling/go/bin/"
133133
ENV PATH="$GOBIN:$PATH"

0 commit comments

Comments
 (0)