From c1b4eb821c7c4c14450fd68fd5a0fc4d81311567 Mon Sep 17 00:00:00 2001 From: Bishnupada Nandi Date: Thu, 10 Apr 2025 23:40:29 +0530 Subject: [PATCH 1/2] Update go version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a905f055b..8019b16a0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir -p /go/src/gofr.dev WORKDIR /go/src/gofr.dev From 3645dfa6e1e0b2d8da22d0e62e89941291854481 Mon Sep 17 00:00:00 2001 From: umang01-hash Date: Mon, 14 Apr 2025 12:27:29 +0530 Subject: [PATCH 2/2] update go version to 1.24 across all docker files --- examples/http-server-using-redis/Dockerfile | 2 +- examples/http-server/Dockerfile | 2 +- examples/using-add-rest-handlers/Dockerfile | 2 +- examples/using-custom-metrics/Dockerfile | 2 +- examples/using-file-bind/Dockerfile | 2 +- examples/using-http-service/Dockerfile | 2 +- examples/using-migrations/Dockerfile | 2 +- examples/using-publisher/Dockerfile | 2 +- examples/using-subscriber/Dockerfile | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/http-server-using-redis/Dockerfile b/examples/http-server-using-redis/Dockerfile index b7fb63d33..1388a7896 100644 --- a/examples/http-server-using-redis/Dockerfile +++ b/examples/http-server-using-redis/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/ diff --git a/examples/http-server/Dockerfile b/examples/http-server/Dockerfile index c0b6d02dd..3dcf2d790 100644 --- a/examples/http-server/Dockerfile +++ b/examples/http-server/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM golang:1.22 AS build +FROM golang:1.24 AS build WORKDIR /src COPY . . diff --git a/examples/using-add-rest-handlers/Dockerfile b/examples/using-add-rest-handlers/Dockerfile index 9d6083214..94bb8215b 100644 --- a/examples/using-add-rest-handlers/Dockerfile +++ b/examples/using-add-rest-handlers/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/ diff --git a/examples/using-custom-metrics/Dockerfile b/examples/using-custom-metrics/Dockerfile index 1b91bef0e..3fcf20870 100644 --- a/examples/using-custom-metrics/Dockerfile +++ b/examples/using-custom-metrics/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/ diff --git a/examples/using-file-bind/Dockerfile b/examples/using-file-bind/Dockerfile index 41ae2e17b..fc35573b1 100644 --- a/examples/using-file-bind/Dockerfile +++ b/examples/using-file-bind/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/ diff --git a/examples/using-http-service/Dockerfile b/examples/using-http-service/Dockerfile index f3f670a5b..30717625e 100644 --- a/examples/using-http-service/Dockerfile +++ b/examples/using-http-service/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/ diff --git a/examples/using-migrations/Dockerfile b/examples/using-migrations/Dockerfile index 0c5fb83b9..489ee14d0 100644 --- a/examples/using-migrations/Dockerfile +++ b/examples/using-migrations/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/ diff --git a/examples/using-publisher/Dockerfile b/examples/using-publisher/Dockerfile index 4e564035b..81b901d64 100644 --- a/examples/using-publisher/Dockerfile +++ b/examples/using-publisher/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/ diff --git a/examples/using-subscriber/Dockerfile b/examples/using-subscriber/Dockerfile index 80c931dfd..ddff7e4ad 100644 --- a/examples/using-subscriber/Dockerfile +++ b/examples/using-subscriber/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22 +FROM golang:1.24 RUN mkdir /src/ WORKDIR /src/