Skip to content

Commit ffd9d4c

Browse files
openshift-pipelines-botopenshift-pipelines-bot
authored andcommitted
1 parent 53d672e commit ffd9d4c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

upstream/images/api.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.25-alpine3.21 AS builder
1+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine3.21 AS builder
22

33
WORKDIR /go/src/github.com/tektoncd/hub
44
COPY . .
55
ARG TARGETOS
66
ARG TARGETARCH
77
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o api-server ./api/cmd/api/...
88

9-
FROM alpine:3.22
9+
FROM alpine:3.21
1010

1111
RUN apk --no-cache add git ca-certificates openssh-client && addgroup -S hub && adduser -S hub -G hub
1212
USER hub

upstream/images/db.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM golang:1.25-alpine3.21 AS builder
1+
FROM --platform=$BUILDPLATFORM golang:1.23-alpine3.21 AS builder
22

33
WORKDIR /go/src/github.com/tektoncd/hub
44
COPY . .
@@ -7,7 +7,7 @@ ARG TARGETARCH
77

88
RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o db-migration ./api/cmd/db/...
99

10-
FROM alpine:3.22
10+
FROM alpine:3.21
1111

1212
RUN apk --no-cache add ca-certificates && addgroup -S hub && adduser -S hub -G hub
1313
USER hub

0 commit comments

Comments
 (0)