Skip to content

Commit 32b4f42

Browse files
Merge pull request #285 from IBM/currency-update
Golang currency update Go 1.25
2 parents 25c7ab8 + 40e3759 commit 32b4f42

39 files changed

Lines changed: 66 additions & 66 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY ./helloworld .
44
COPY codeengine.go .
55

66
RUN CGO_ENABLED=0 go build -o /go/bin/app codeengine.go
77

88
# Copy the exe into a smaller base image
9-
FROM gcr.io/distroless/static-debian12
9+
FROM gcr.io/distroless/static-debian13
1010
COPY --from=build-env /go/bin/app /
1111
ENTRYPOINT ["/app"]

app-n-event-notification/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module destination-app
22

3-
go 1.24.0
3+
go 1.25
44

55
require (
66
github.com/IBM/code-engine-go-sdk v0.0.0-20230622184111-3ab23ea2d678

app2job/Dockerfile.app

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY app.go .
44

55
RUN CGO_ENABLED=0 go build -o /go/bin/app app.go
66

77
# Copy the exe into a smaller base image
8-
FROM gcr.io/distroless/static-debian12
8+
FROM gcr.io/distroless/static-debian13
99
COPY --from=build-env /go/bin/app /
1010
ENTRYPOINT ["/app"]

app2job/Dockerfile.job

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY job.go .
44

55
RUN CGO_ENABLED=0 go build -o /go/bin/job job.go
66

77
# Copy the exe into a smaller base image
8-
FROM gcr.io/distroless/static-debian12
8+
FROM gcr.io/distroless/static-debian13
99
COPY --from=build-env /go/bin/job /
1010
ENTRYPOINT ["/job"]

auth/Dockerfile.app

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY . .
44

55
RUN CGO_ENABLED=0 go build -o /go/bin/app app.go
66

77
# Copy the exe into a smaller base image
8-
FROM gcr.io/distroless/static-debian12
8+
FROM gcr.io/distroless/static-debian13
99
COPY --from=build-env /go/bin/app /
1010
ENTRYPOINT ["/app"]

cecli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY . .
44

configmaps-env/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY config.go .
44

55
RUN CGO_ENABLED=0 go build -o /go/bin/app config.go
66

77
# Copy the exe into a smaller base image
8-
FROM gcr.io/distroless/static-debian12
8+
FROM gcr.io/distroless/static-debian13
99
COPY --from=build-env /go/bin/app /
1010
ENTRYPOINT ["/app"]

configmaps-vol/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY config.go .
44

55
RUN CGO_ENABLED=0 go build -o /go/bin/app config.go
66

77
# Copy the exe into a smaller base image
8-
FROM gcr.io/distroless/static-debian12
8+
FROM gcr.io/distroless/static-debian13
99
COPY --from=build-env /go/bin/app /
1010
ENTRYPOINT ["/app"]

cos-event/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY cos-listen.go .
44

55
RUN CGO_ENABLED=0 go build -o /go/bin/app cos-listen.go
66

77
# Copy the exe into a smaller base image
8-
FROM gcr.io/distroless/static-debian12
8+
FROM gcr.io/distroless/static-debian13
99
COPY --from=build-env /go/bin/app /
1010
ENTRYPOINT ["/app"]

cron/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM quay.io/projectquay/golang:1.23 AS build-env
1+
FROM quay.io/projectquay/golang:1.25 AS build-env
22
WORKDIR /go/src/app
33
COPY cron.go .
44

55
RUN CGO_ENABLED=0 go build -o /go/bin/app cron.go
66

77
# Copy the exe into a smaller base image
8-
FROM gcr.io/distroless/static-debian12
8+
FROM gcr.io/distroless/static-debian13
99
COPY --from=build-env /go/bin/app /
1010
ENTRYPOINT ["/app"]

0 commit comments

Comments
 (0)