Skip to content

Commit

Permalink
rhel: Add RHEL 9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
travier committed Dec 16, 2023
1 parent 817bf6b commit 2e03844
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/rhel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
build-push-images:
strategy:
matrix:
release: ['8.2', '8.4', '8.6', '8.8', '9.0', '9.2']
release: ['8.2', '8.4', '8.6', '8.8', '9.0', '9.2', '9.3']

runs-on: ubuntu-latest
steps:
Expand Down
22 changes: 22 additions & 0 deletions rhel/9.3/Containerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
FROM registry.access.redhat.com/ubi9/ubi:9.3

LABEL com.github.containers.toolbox="true" \
com.redhat.component="rhel-toolbox" \
name="rhel-toolbox" \
version="9.3" \
usage="This image is meant to be used with the toolbox command" \
summary="Base image for creating RHEL toolbox containers" \
maintainer="Timothée Ravier <[email protected]>"

RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf

COPY missing-docs extra-packages /

RUN dnf -y swap coreutils-single coreutils-full && \
dnf -y reinstall $(<missing-docs) && \
dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm && \
dnf -y install $(<extra-packages) && \
dnf -y upgrade && \
dnf clean all

RUN rm /missing-docs /extra-packages
32 changes: 32 additions & 0 deletions rhel/9.3/extra-packages
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
bash-completion
bc
bzip2
diffutils
dnf-plugins-core
findutils
flatpak-spawn
git
gnupg
hostname
iproute
iputils
krb5-libs
less
lsof
man-db
openssh-clients
passwd
pigz
procps-ng
rsync
shadow-utils
sudo
time
unzip
util-linux
vte-profile
wget
which
xorg-x11-xauth
xz
zip
15 changes: 15 additions & 0 deletions rhel/9.3/missing-docs
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
acl
bash
curl
gawk
grep
gzip
libcap
openssl
p11-kit
pam
python3
rpm
sed
systemd
tar

0 comments on commit 2e03844

Please sign in to comment.