Skip to content

Commit d3ca329

Browse files
committed
1-16-4 update dockerfile
Signed-off-by: savitaashture <[email protected]>
1 parent a35a3bf commit d3ca329

17 files changed

+10
-436
lines changed

.konflux/dockerfiles/api.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
2-
ARG RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal:latest@sha256:e1c4703364c5cb58f5462575dc90345bcd934ddc45e6c32f9c162f2b5617681c
2+
ARG RUNTIME=registry.access.redhat.com/ubi8/ubi:latest@sha256:244e9858f9d8a2792a3dceb850b4fa8fdbd67babebfde42587bfa919d5d1ecef
33

44
FROM $GO_BUILDER AS builder
55

@@ -15,7 +15,7 @@ RUN go build -ldflags="-X 'knative.dev/pkg/changeset.rev=$(cat HEAD)'" -mod=vend
1515
./api/cmd/api
1616

1717
FROM $RUNTIME
18-
ARG VERSION=hub-next
18+
ARG VERSION=hub-api-1.16.4
1919

2020
COPY --from=builder /tmp/hub-api-server /ko-app/hub-api-server
2121
COPY head ${KO_DATA_PATH}/HEAD
@@ -24,7 +24,7 @@ EXPOSE 8000
2424

2525
LABEL \
2626
com.redhat.component="openshift-pipelines-hub-api-container" \
27-
name="openshift-pipelines/pipelines-hub-api-rhel9" \
27+
name="openshift-pipelines/pipelines-hub-api-rhel8" \
2828
version=$VERSION \
2929
summary="Red Hat OpenShift Pipelines Hub API" \
3030
maintainer="[email protected]" \

.konflux/dockerfiles/db-migration.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG GO_BUILDER=brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.23
2-
ARG RUNTIME=registry.access.redhat.com/ubi9/ubi-minimal:latest@sha256:e1c4703364c5cb58f5462575dc90345bcd934ddc45e6c32f9c162f2b5617681c
2+
ARG RUNTIME=registry.access.redhat.com/ubi8/ubi:latest@sha256:244e9858f9d8a2792a3dceb850b4fa8fdbd67babebfde42587bfa919d5d1ecef
33

44
FROM $GO_BUILDER AS builder
55

@@ -15,7 +15,7 @@ RUN go build -ldflags="-X 'knative.dev/pkg/changeset.rev=$(cat HEAD)'" -mod=vend
1515
./api/cmd/db
1616

1717
FROM $RUNTIME
18-
ARG VERSION=hub-next
18+
ARG VERSION=hub-db-migration-1.16.4
1919

2020
COPY --from=builder /tmp/hub-db-migration /ko-app/hub-db-migration
2121
COPY head ${KO_DATA_PATH}/HEAD
@@ -24,7 +24,7 @@ EXPOSE 8000
2424

2525
LABEL \
2626
com.redhat.component="openshift-pipelines-hub-db-migration-container" \
27-
name="openshift-pipelines/pipelines-hub-db-migration-rhel9" \
27+
name="openshift-pipelines/pipelines-hub-db-migration-rhel8" \
2828
version=$VERSION \
2929
summary="Red Hat OpenShift Pipelines Hub DB Migration" \
3030
maintainer="[email protected]" \

.konflux/dockerfiles/ui.Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# --- builder image
2-
ARG NODEJS_BUILDER=registry.access.redhat.com/ubi9/nodejs-18@sha256:647da5299a2e15900b40dae5b3181d116cc7eb0be93c856dc2f47d20ce891f48
3-
ARG RUNTIME=registry.access.redhat.com/ubi9/nginx-124@sha256:e73b92e682108cafd247be56a64e8b5f0c906c6033c9740325cf8ff7c47320c9
2+
ARG NODEJS_BUILDER=registry.access.redhat.com/ubi8/nodejs-18@sha256:1a109c7d4a268e897a22b87f505eef326864f5ff74d4e2b7f0706605c9c5aba5
3+
ARG RUNTIME=registry.access.redhat.com/ubi8/nginx-124@sha256:b02afddd2dd7d754bda1226fe3141f4b934f1e2fab3a1ed1ddc9bd476a8ee3e6
44

55
FROM $NODEJS_BUILDER AS builder
66

@@ -26,7 +26,7 @@ ARG REMOTE_SOURCE=/go/src/github.com/tektoncd/hub
2626
COPY --from=builder $REMOTE_SOURCE/ui/build /opt/app-root/src
2727
COPY --from=builder --chown=1001 $REMOTE_SOURCE/ui/image/start.sh /usr/bin/
2828
ENV BASE_PATH="/opt/app-root/src"
29-
ARG VERSION=hub-next
29+
ARG VERSION=hub-ui-1.16.4
3030

3131
USER root
3232
RUN dnf install -y openssl-libs && \
@@ -46,7 +46,7 @@ CMD /usr/bin/start.sh
4646

4747
LABEL \
4848
com.redhat.component="openshift-pipelines-hub-ui-container" \
49-
name="openshift-pipelines/pipelines-hub-ui-rhel9" \
49+
name="openshift-pipelines/pipelines-hub-ui-rhel8" \
5050
version=$VERSION \
5151
summary="Red Hat OpenShift Pipelines Hub UI" \
5252
maintainer="[email protected]" \

.konflux/next/application.yaml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.konflux/next/component-api.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.konflux/next/component-db-migration.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.konflux/next/component-ui.yaml

Lines changed: 0 additions & 18 deletions
This file was deleted.

.konflux/next/image-api.yaml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.konflux/next/image-db-migration.yaml

Lines changed: 0 additions & 15 deletions
This file was deleted.

.konflux/next/image-ui.yaml

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)