Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Bump fedora 37 #1

Open
wants to merge 3 commits 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
8 changes: 4 additions & 4 deletions busybox.containerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from fedora:34 as build-env
from fedora:37 as build-env

run mkdir /output
run dnf -y --installroot /output --releasever 34 --setopt=install_weak_deps=false --nodocs install busybox
run dnf -y --installroot /output --releasever 34 clean all
run dnf -y --installroot /output --releasever 37 --setopt=install_weak_deps=false --nodocs install busybox
run dnf -y --installroot /output --releasever 37 clean all

run mkdir /output/bin
run for i in $(/output/sbin/busybox --list); do ln -s /sbin/busybox /output/bin/$i; done
run for i in $(/output/usr/sbin/busybox --list); do ln -s /usr/sbin/busybox /output/bin/$i; done

from scratch
copy --from=build-env /output /
6 changes: 3 additions & 3 deletions distroless.containerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from fedora:34 as build-env
from fedora:37 as build-env

run mkdir /output
run dnf -y --installroot /output --releasever 34 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single
run dnf -y --installroot /output --releasever 34 clean all
run dnf -y --installroot /output --releasever 37 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single
run dnf -y --installroot /output --releasever 37 clean all

from scratch
copy --from=build-env /output /
6 changes: 3 additions & 3 deletions httpd.containerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from fedora:34 as build-env
from fedora:37 as build-env

run mkdir /output
run dnf -y --installroot /output --releasever 34 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single httpd
run dnf -y --installroot /output --releasever 34 clean all
run dnf -y --installroot /output --releasever 37 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single httpd
run dnf -y --installroot /output --releasever 37 clean all

from scratch
copy --from=build-env /output /
6 changes: 3 additions & 3 deletions microdnf.containerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from fedora:34 as build-env
from fedora:37 as build-env

run mkdir /output
run dnf -y --installroot /output --releasever 34 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single microdnf
run dnf -y --installroot /output --releasever 34 clean all
run dnf -y --installroot /output --releasever 37 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single microdnf
run dnf -y --installroot /output --releasever 37 clean all

from scratch
copy --from=build-env /output /
6 changes: 3 additions & 3 deletions nginx.containerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from fedora:34 as build-env
from fedora:37 as build-env

run mkdir /output
run dnf -y --installroot /output --releasever 34 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single nginx
run dnf -y --installroot /output --releasever 34 clean all
run dnf -y --installroot /output --releasever 37 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single nginx
run dnf -y --installroot /output --releasever 37 clean all

from scratch
copy --from=build-env /output /
6 changes: 3 additions & 3 deletions openssl.containerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from fedora:34 as build-env
from fedora:37 as build-env

run mkdir /output
run dnf -y --installroot /output --releasever 34 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single openssl
run dnf -y --installroot /output --releasever 34 clean all
run dnf -y --installroot /output --releasever 37 --setopt=install_weak_deps=false --nodocs install glibc-minimal-langpack coreutils-single openssl
run dnf -y --installroot /output --releasever 37 clean all

from scratch
copy --from=build-env /output /