Skip to content

Commit

Permalink
build: switch dockerfile to go 1.23 (#4517)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt authored Feb 19, 2025
1 parent 89a2506 commit 5bbc1a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM gitpod/workspace-full

# Go
ENV GO_VERSION=1.23.4
ENV GO_VERSION=1.23.6
ENV GOPATH=$HOME/go-packages
ENV GOROOT=$HOME/go
ENV PATH=$GOROOT/bin:$GOPATH/bin:$PATH
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@

## prep the base image.
#
FROM golang as base
FROM golang:1.23.6 as base

RUN apt update && \
apt-get install -y \
build-essential \
ca-certificates \
curl
build-essential \
ca-certificates \
curl

# enable faster module downloading.
ENV GOPROXY https://proxy.golang.org
Expand Down

0 comments on commit 5bbc1a1

Please sign in to comment.