images: Add fedora-toolbox image definition for Fedora 34
https://github.com/containers/toolbox/pull/532
This commit is contained in:
parent
464ea7cb28
commit
3fee36c885
4 changed files with 83 additions and 0 deletions
27
images/fedora/f34/Dockerfile
Normal file
27
images/fedora/f34/Dockerfile
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
FROM registry.fedoraproject.org/fedora:34
|
||||||
|
|
||||||
|
ENV NAME=fedora-toolbox VERSION=34
|
||||||
|
LABEL com.github.containers.toolbox="true" \
|
||||||
|
com.github.debarshiray.toolbox="true" \
|
||||||
|
com.redhat.component="$NAME" \
|
||||||
|
name="$FGC/$NAME" \
|
||||||
|
version="$VERSION" \
|
||||||
|
usage="This image is meant to be used with the toolbox command" \
|
||||||
|
summary="Base image for creating Fedora toolbox containers" \
|
||||||
|
maintainer="Debarshi Ray <rishi@fedoraproject.org>"
|
||||||
|
|
||||||
|
COPY README.md /
|
||||||
|
|
||||||
|
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
|
||||||
|
|
||||||
|
COPY missing-docs /
|
||||||
|
RUN dnf -y reinstall $(<missing-docs)
|
||||||
|
RUN rm /missing-docs
|
||||||
|
|
||||||
|
COPY extra-packages /
|
||||||
|
RUN dnf -y install $(<extra-packages)
|
||||||
|
RUN rm /extra-packages
|
||||||
|
|
||||||
|
RUN dnf clean all
|
||||||
|
|
||||||
|
CMD /bin/sh
|
1
images/fedora/f34/README.md
Symbolic link
1
images/fedora/f34/README.md
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../../README.md
|
40
images/fedora/f34/extra-packages
Normal file
40
images/fedora/f34/extra-packages
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
bash-completion
|
||||||
|
bzip2
|
||||||
|
diffutils
|
||||||
|
dnf-plugins-core
|
||||||
|
findutils
|
||||||
|
flatpak-spawn
|
||||||
|
fpaste
|
||||||
|
git
|
||||||
|
gnupg
|
||||||
|
gnupg2-smime
|
||||||
|
gvfs-client
|
||||||
|
hostname
|
||||||
|
iputils
|
||||||
|
jwhois
|
||||||
|
keyutils
|
||||||
|
krb5-libs
|
||||||
|
less
|
||||||
|
lsof
|
||||||
|
man-db
|
||||||
|
man-pages
|
||||||
|
mlocate
|
||||||
|
mtr
|
||||||
|
openssh-clients
|
||||||
|
passwd
|
||||||
|
pigz
|
||||||
|
procps-ng
|
||||||
|
rsync
|
||||||
|
shadow-utils
|
||||||
|
sudo
|
||||||
|
tcpdump
|
||||||
|
time
|
||||||
|
traceroute
|
||||||
|
tree
|
||||||
|
unzip
|
||||||
|
vte-profile
|
||||||
|
wget
|
||||||
|
which
|
||||||
|
words
|
||||||
|
xz
|
||||||
|
zip
|
15
images/fedora/f34/missing-docs
Normal file
15
images/fedora/f34/missing-docs
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
acl
|
||||||
|
bash
|
||||||
|
curl
|
||||||
|
gawk
|
||||||
|
grep
|
||||||
|
gzip
|
||||||
|
libcap
|
||||||
|
openssl
|
||||||
|
p11-kit
|
||||||
|
pam
|
||||||
|
python3
|
||||||
|
rpm
|
||||||
|
sed
|
||||||
|
systemd
|
||||||
|
tar
|
Loading…
Reference in a new issue