Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY ./helloworld .
COPY codeengine.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
2 changes: 1 addition & 1 deletion app-n-event-notification/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module destination-app

go 1.24.0
go 1.25

require (
github.com/IBM/code-engine-go-sdk v0.0.0-20230622184111-3ab23ea2d678
Expand Down
4 changes: 2 additions & 2 deletions app2job/Dockerfile.app
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY app.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions app2job/Dockerfile.job
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY job.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/job /
ENTRYPOINT ["/job"]
4 changes: 2 additions & 2 deletions auth/Dockerfile.app
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
2 changes: 1 addition & 1 deletion cecli/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

Expand Down
4 changes: 2 additions & 2 deletions configmaps-env/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY config.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions configmaps-vol/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY config.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions cos-event/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY cos-listen.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions cron/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY cron.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions cronjob/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY cronjob.go .
RUN CGO_ENABLED=0 go build -o /go/bin/job cronjob.go

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/job /
ENTRYPOINT ["/job"]
4 changes: 2 additions & 2 deletions daemonjob/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY daemonjob.go .
RUN CGO_ENABLED=0 go build -o /go/bin/daemonjob daemonjob.go

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/daemonjob /
ENTRYPOINT ["/daemonjob"]
4 changes: 2 additions & 2 deletions fotobox/download-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/go-toolset:1.24 AS build-stage
FROM registry.access.redhat.com/ubi9/go-toolset:1.25 AS build-stage

WORKDIR /app

Expand All @@ -11,7 +11,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -o /api


# Deploy the application binary into a lean image
FROM gcr.io/distroless/static:latest
FROM gcr.io/distroless/static-debian13

WORKDIR /

Expand Down
2 changes: 1 addition & 1 deletion fotobox/download-app/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module cosapp

go 1.24.0
go 1.25

require github.com/gin-contrib/cors v1.7.5

Expand Down
4 changes: 2 additions & 2 deletions function2job/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .
RUN CGO_ENABLED=0 go build -o /go/bin/job job.go

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/job /
ENTRYPOINT ["/job"]
4 changes: 2 additions & 2 deletions github-action-workflows/my-docker-app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM quay.io/projectquay/golang:1.24 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env

WORKDIR /go/src/app

COPY main.go main.go

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

FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13

EXPOSE 3000

Expand Down
2 changes: 1 addition & 1 deletion github-webhook/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/IBM/CodeEngine/github-webhook

go 1.23.0
go 1.25

require (
github.com/IBM/event-notifications-go-admin-sdk v0.6.0
Expand Down
4 changes: 2 additions & 2 deletions github/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY github.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
2 changes: 1 addition & 1 deletion grpc/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/qu1queee/CodeEngine/grpc

go 1.23.0
go 1.25

require (
github.com/gorilla/mux v1.8.1
Expand Down
4 changes: 2 additions & 2 deletions helloworld/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions job2app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY job.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions job2app/Dockerfile.app
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY app.go .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
2 changes: 1 addition & 1 deletion kafka-observer/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/IBM/CodeEngine/kafka-observer

go 1.23.0
go 1.25

require (
github.com/IBM/code-engine-go-sdk v0.0.0-20240126185534-a6e054aa01ed
Expand Down
2 changes: 1 addition & 1 deletion kafka/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/IBM/CodeEngine/kafka

go 1.24.0
go 1.25

require github.com/IBM/sarama v1.43.3

Expand Down
4 changes: 2 additions & 2 deletions secrets-env/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions secrets-vol/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
4 changes: 2 additions & 2 deletions sessions/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
2 changes: 1 addition & 1 deletion sessions/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/IBM/CodeEngine/sessions

go 1.18
go 1.25

require github.com/redis/go-redis/v9 v9.7.3

Expand Down
4 changes: 2 additions & 2 deletions thumbnail/eventer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
ENTRYPOINT ["/app"]
2 changes: 1 addition & 1 deletion thumbnail/eventer/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/IBM/CodeEngine/thumbnail/eventer

go 1.16
go 1.25

require (
github.com/duglin/cosclient v0.0.0-20220220144541-831ae437b3cd
Expand Down
4 changes: 2 additions & 2 deletions thumbnail/v1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
COPY page.html /
COPY pictures/* /pictures/
Expand Down
2 changes: 1 addition & 1 deletion thumbnail/v1/go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/IBM/CodeEngine/thumbnail/vOne

go 1.16
go 1.25

require github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
4 changes: 2 additions & 2 deletions thumbnail/v2/Dockerfile.app
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

# Copy the exe into a smaller base image
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian13
COPY --from=build-env /go/bin/app /
COPY page.html /
COPY pictures/* /pictures/
Expand Down
4 changes: 2 additions & 2 deletions thumbnail/v2/Dockerfile.job
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM quay.io/projectquay/golang:1.23 AS build-env
FROM quay.io/projectquay/golang:1.25 AS build-env
WORKDIR /go/src/app
COPY . .

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

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