Skip to content

Commit 9f24721

Browse files
author
Kostas Petrakis
committed
chore(golang): bump to v1.24
- Update to v1.24
1 parent 0bf3e89 commit 9f24721

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
FROM mcr.microsoft.com/devcontainers/go:1-1.23-bookworm
16+
FROM mcr.microsoft.com/devcontainers/go:1-1.24-bookworm
1717

1818
ENV PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib:/usr/local/lib/pkgconfig
1919
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ FROM --platform=linux/arm64 debian:bookworm as debian-arm64
3131
RUN apt-get update
3232
RUN apt-get install -y libssh2-1-dev libssl-dev zlib1g-dev
3333

34-
FROM --platform=$BUILDPLATFORM golang:1.23-bookworm as builder
34+
FROM --platform=$BUILDPLATFORM golang:1.24-bookworm as builder
3535

3636
# docker build --build-arg GOPROXY=https://goproxy.io,direct -t mericodev/lake .
3737
ARG GOPROXY=

backend/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/apache/incubator-devlake
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/aws/aws-sdk-go v1.55.6

devops/docker/lake-builder/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ FROM --platform=linux/amd64 debian:bullseye as debian-amd64
1818
RUN apt-get -y update && apt -y upgrade &&\
1919
apt-get install -y libssh2-1-dev libssl-dev zlib1g-dev
2020

21-
FROM golang:1.23-bullseye as builder
21+
FROM golang:1.24-bullseye as builder
2222

2323
# Base dependencies
2424
RUN apt-get -y update && apt -y upgrade &&\
@@ -55,7 +55,7 @@ COPY --from=builder /tmp/deps/include/ /usr/include/
5555
ENV PKG_CONFIG_PATH=/usr/lib/x86_64-linux-gnu/pkgconfig
5656

5757
# Install Golang
58-
RUN curl -L https://git.io/vQhTU | bash -s -- --version 1.23.0
58+
RUN curl -L https://git.io/vQhTU | bash -s -- --version 1.24.0
5959
RUN mv /root/go /go &&\
6060
mv /root/.go /usr/local/go &&\
6161
ln -sf /usr/local/go/bin/* /usr/bin

0 commit comments

Comments
 (0)