Skip to content

Commit

Permalink
Upgrade go to 1.23.2 in Dockerfile (#1255)
Browse files Browse the repository at this point in the history
## Proposed Changes

As go 1.21 is end of life, upgrade go to 1.23.2 version in Dockerfile.

## Docs and Tests

* [ ] Tests added
* [ ] Updated documentation
  • Loading branch information
antonincms authored Oct 31, 2024
1 parent 7c930df commit 3016099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN python -m venv $VIRTUAL_ENV \
&& pip install --upgrade pip yq wheel poetry==$POETRY_VERSION

# Install Go (for go-jsonnet)
RUN curl -fsSL -o go.tar.gz https://go.dev/dl/go1.21.7.linux-${TARGETARCH}.tar.gz \
RUN curl -fsSL -o go.tar.gz https://go.dev/dl/go1.23.2.linux-${TARGETARCH}.tar.gz \
&& tar -C /usr/local -xzf go.tar.gz \
&& rm go.tar.gz

Expand Down

0 comments on commit 3016099

Please sign in to comment.