Skip to content

Commit d3cf151

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

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:91eda9776261207ea25fd06b5b7fed8d397dd2c0a283e77f2ab6e91bfa71079d 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.9-1778589418@sha256:c96e9562356b7bcda6f7eef56e0e656641cf6290f00b5b18fbee34ecc09d2cc1 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-1778576163@sha256:03bcee28f6137a3103a9218d2d7e6a453658d04a084ec9a41d1501c0d28cff37 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-1778576163@sha256:03bcee28f6137a3103a9218d2d7e6a453658d04a084ec9a41d1501c0d28cff37 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.9-1778589418@sha256:c96e9562356b7bcda6f7eef56e0e656641cf6290f00b5b18fbee34ecc09d2cc1 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-1778576723@sha256:145c54e19de7ea25d958b54d981f95762d1a22d17f45fa8f013a5ea07f8ad68c
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)