-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #125 from travier/c10s
centos: Add CentOS Stream 10
- Loading branch information
Showing
4 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
FROM quay.io/centos/centos:stream10-development | ||
|
||
LABEL com.github.containers.toolbox="true" \ | ||
com.redhat.component="centos-toolbox" \ | ||
name="centos-toolbox" \ | ||
version="stream10-development" \ | ||
usage="This image is meant to be used with the toolbox command" \ | ||
summary="Base image for creating CentOS toolbox containers" \ | ||
maintainer="Timothée Ravier <tim@siosm.fr>" | ||
|
||
RUN rm /etc/rpm/macros.image-language-conf | ||
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf | ||
|
||
COPY missing-docs extra-packages / | ||
|
||
RUN dnf -y upgrade && \ | ||
dnf -y swap coreutils-single coreutils-full && \ | ||
dnf -y swap glibc-minimal-langpack glibc-all-langpacks && \ | ||
dnf -y reinstall $(<missing-docs) && \ | ||
dnf -y install 'dnf-command(config-manager)' && \ | ||
dnf config-manager --set-enabled crb && \ | ||
dnf -y install $(<extra-packages) && \ | ||
dnf clean all | ||
|
||
RUN rm /missing-docs /extra-packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
bash-completion | ||
bc | ||
bzip2 | ||
diffutils | ||
dnf-plugins-core | ||
findutils | ||
flatpak-spawn | ||
git | ||
gnupg2 | ||
gnupg2-smime | ||
gvfs-client | ||
hostname | ||
iproute | ||
iputils | ||
keyutils | ||
krb5-libs | ||
less | ||
lsof | ||
man-db | ||
man-pages | ||
mtr | ||
nano | ||
openssh-clients | ||
passwd | ||
pigz | ||
procps-ng | ||
rsync | ||
shadow-utils | ||
sudo | ||
tcpdump | ||
time | ||
traceroute | ||
tree | ||
unzip | ||
util-linux | ||
vte-profile | ||
wget | ||
which | ||
words | ||
xorg-x11-xauth | ||
xz | ||
zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |