Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ docker run -ti --rm \
| `yarn` |`<via npm>` |
|--------GO-----------|-------------------------------------|
| `go` |`go-toolset` |
| `gopls` |`golang.org/x/tools/gopls v0.16.2` |
| `gopls` |`golang.org/x/tools/gopls v0.21.0` |
|--------.NET---------|-------------------------------------|
| `dotnet` |`dotnet-sdk-8.0` |
|------PYTHON---------|-------------------------------------|
Expand Down
2 changes: 1 addition & 1 deletion base/ubi9/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1.3-labs

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

ARG TARGETARCH
LABEL maintainer="Red Hat, Inc."
Expand Down
4 changes: 2 additions & 2 deletions universal/ubi9/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ RUN curl -fLo mill https://raw.githubusercontent.com/lefou/millw/main/millw && \
RUN dnf -y install llvm-toolset gcc gcc-c++ clang clang-libs clang-tools-extra gdb

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