Skip to content

Commit

Permalink
chore(deps): update registry.fedoraproject.org/fedora docker tag to v43
Browse files Browse the repository at this point in the history
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
  • Loading branch information
red-hat-konflux[bot] authored Feb 6, 2025
1 parent b35eaa8 commit c415541
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:41 AS builder
FROM registry.fedoraproject.org/fedora:43 AS builder
RUN dnf install -y git-core golang gpgme-devel libassuan-devel && mkdir -p /build/bib
COPY bib/go.mod bib/go.sum /build/bib/
ARG GOPROXY=https://proxy.golang.org,direct
Expand All @@ -10,7 +10,7 @@ COPY . /build
WORKDIR /build
RUN ./build.sh

FROM registry.fedoraproject.org/fedora:41
FROM registry.fedoraproject.org/fedora:43
# Fast-track osbuild so we don't depend on the "slow" Fedora release process to implement new features in bib
COPY ./group_osbuild-osbuild-fedora.repo /etc/yum.repos.d/
COPY ./package-requires.txt .
Expand Down
6 changes: 3 additions & 3 deletions devel/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:40 AS osbuild-builder
FROM registry.fedoraproject.org/fedora:43 AS osbuild-builder
# build osbuild RPMs
RUN dnf install -y rpm-build dnf-plugins-core git-core
COPY --from=osbuild . /build
Expand All @@ -8,7 +8,7 @@ RUN git config --global --add safe.directory /build
RUN make rpm


FROM registry.fedoraproject.org/fedora:40 AS bib-builder
FROM registry.fedoraproject.org/fedora:43 AS bib-builder
# replace osbuild/images dependency and build bib
RUN dnf install -y git-core golang gpgme-devel libassuan-devel
COPY --from=images . /build/images
Expand All @@ -22,7 +22,7 @@ WORKDIR /build
RUN ./build.sh


FROM registry.fedoraproject.org/fedora:40
FROM registry.fedoraproject.org/fedora:43
COPY --from=osbuild-builder /build/rpmbuild/RPMS/noarch/*.rpm /rpms/
COPY ./package-requires.txt .
RUN grep -vE '^#' package-requires.txt | xargs dnf install -y && rm -f package-requires.txt && dnf install -y /rpms/*.rpm && dnf clean all
Expand Down

0 comments on commit c415541

Please sign in to comment.