Skip to content

Commit eac96c3

Browse files
Update dockerfile dependencies
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
1 parent 1432baf commit eac96c3

11 files changed

Lines changed: 19 additions & 19 deletions

File tree

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
FROM golang:1.24-alpine@sha256:daae04ebad0c21149979cd8e9db38f565ecefd8547cf4a591240dc1972cf1399 AS builder
15+
FROM golang:1.26-alpine@sha256:2389ebfa5b7f43eeafbd6be0c3700cc46690ef842ad962f6c5bd6be49ed82039 AS builder
1616

1717
# Allows for the proper yq to be downloaded
1818
# This arg is automatically set if the dockerfile is built with --platform flag

index/generator/vendor/github.com/docker/distribution/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index/generator/vendor/github.com/pjbgf/sha1cd/Dockerfile.arm

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index/generator/vendor/github.com/pjbgf/sha1cd/Dockerfile.arm64

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index/server/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414
# limitations under the License.
1515

1616
# Index Server build stage
17-
FROM registry.access.redhat.com/ubi8/go-toolset:1.24.4-1754273152@sha256:ddad134f9fe193a6b3c7a87fa73b17e80212cdb0aa10dbd5a7581df96c998f1b AS index-builder
17+
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.7-1773073767@sha256:0f9b48ff8daa34fd2a97bfe7bc0f59113c7c1635c415b39d2d6af22250a94535 AS index-builder
1818
USER root
1919
WORKDIR /tools
2020
COPY . .
2121
RUN CGO_ENABLED=0 go build -mod=vendor -o index-server main.go
2222

23-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10@sha256:000dd8e4a3046ac7c47e65bbe01efc48d7a568e5ee9946cca1d74a7abf042d36 AS license
23+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1772599255@sha256:b880e16b888f47bc3fae64e67cd9776b24372f2e7ec2051f5a9386de6f5a75ac AS license
2424
ARG LICENSE_REPO="devfile/registry-support"
2525
ARG LICENSE_REF="main"
2626
USER root
@@ -30,7 +30,7 @@ RUN mkdir -p /licenses
3030
RUN curl -sL https://raw.githubusercontent.com/${LICENSE_REPO}/refs/heads/${LICENSE_REF}/LICENSE -o /licenses/LICENSE
3131

3232
# Application image
33-
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10@sha256:000dd8e4a3046ac7c47e65bbe01efc48d7a568e5ee9946cca1d74a7abf042d36 AS runner
33+
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10-1772599255@sha256:b880e16b888f47bc3fae64e67cd9776b24372f2e7ec2051f5a9386de6f5a75ac AS runner
3434
USER root
3535

3636
# Install and configure dependencies

index/server/vendor/github.com/docker/distribution/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index/server/vendor/github.com/pjbgf/sha1cd/Dockerfile.arm

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index/server/vendor/github.com/pjbgf/sha1cd/Dockerfile.arm64

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oci-registry/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
15-
FROM registry.access.redhat.com/ubi8/go-toolset:1.24.4-1754273152@sha256:ddad134f9fe193a6b3c7a87fa73b17e80212cdb0aa10dbd5a7581df96c998f1b as registry
15+
FROM registry.access.redhat.com/ubi8/go-toolset:1.25.7-1773073767@sha256:0f9b48ff8daa34fd2a97bfe7bc0f59113c7c1635c415b39d2d6af22250a94535 as registry
1616
ARG PKG="github.com/docker/distribution"
1717
ARG PKG_VERSION="v2.8.3"
1818
ENV GOPATH=/go
@@ -26,7 +26,7 @@ RUN VERSION=$(git describe --match 'v[0-9]*' --dirty='.m' --always --tags) REVIS
2626
echo -n "${VERSION}" | tee /tmp/.version;
2727
RUN set -x ; CGO_ENABLED=0 GO111MODULE=auto go build -tags "include_oss,include_gcs" -trimpath -ldflags "$(cat /tmp/.ldflags) -s -w" -o /usr/bin/registry ./cmd/registry
2828

29-
FROM registry.access.redhat.com/ubi10-minimal:10.1@sha256:380da76bb8a69e333b6c11341d600f5d3aab9ee5b8c95ceb64aae2457f5c1c6e
29+
FROM registry.access.redhat.com/ubi10-minimal:10.1-1772441549@sha256:29599cb2a44f3275232bc5fc48d26e069e8ba72b710229bed6652633725aa31a
3030
RUN microdnf update -y && rm -rf /var/cache/yum && microdnf install -y ca-certificates httpd-tools shadow-utils
3131

3232
# Create a non-root user to run the server as

registry-library/vendor/github.com/docker/distribution/Dockerfile

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)