Skip to content

Commit

Permalink
Upgrade go to 1.23.2 in Dockerfile
Browse files Browse the repository at this point in the history
As go 1.21 is end of life, upgrade go to latest version in Dockerfile.
  • Loading branch information
antonincms authored Oct 28, 2024
1 parent 7c930df commit d5ec559
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 d5ec559

Please sign in to comment.