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
6 changes: 3 additions & 3 deletions docker_image_resources/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ ENV GOPATH=/root/go \
HOME=/root

RUN mkdir -p /root/go/bin && \
go install golang.org/dl/go1.24.13@latest && \
go1.24.13 download && \
go install golang.org/dl/go1.26.1@latest && \
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider a variable here to avoid repetitively and potential drift across these three references.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That makes sense, thanks!

go1.26.1 download && \
rm -rf /usr/local/go && \
ln -s /root/sdk/go1.24.13 /usr/local/go
ln -s /root/sdk/go1.26.1 /usr/local/go

ENV GOROOT=/usr/local/go \
PATH=/usr/local/go/bin:/root/go/bin:$PATH
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/aws/rolesanywhere-credential-helper

go 1.24.0
go 1.26.0

toolchain go1.24.13
toolchain go1.26.1

require (
github.com/aws/aws-sdk-go-v2 v1.40.0
Expand Down
Loading