Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update registry.fedoraproject.org/fedora docker tag to v43 #823

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading