forked from containers/toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fedora-toolbox image definitions for Fedoras 29 and 30
- Loading branch information
1 parent
169f916
commit 573b156
Showing
6 changed files
with
116 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM registry.fedoraproject.org/fedora:29 | ||
|
||
ENV NAME=fedora-toolbox VERSION=29 | ||
LABEL com.redhat.component="$NAME" \ | ||
name="$FGC/$NAME" \ | ||
version="$VERSION" \ | ||
usage="This image is meant to be used with the fedora-toolbox command" \ | ||
summary="Base image for creating Fedora toolbox containers" \ | ||
maintainer="Debarshi Ray <[email protected]>" | ||
|
||
COPY README.md / | ||
|
||
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf | ||
RUN dnf -y swap coreutils-single coreutils-full | ||
|
||
COPY extra-packages / | ||
RUN dnf -y install $(<extra-packages) | ||
RUN rm /extra-packages | ||
|
||
CMD /bin/sh |
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 @@ | ||
../../../README.md |
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,37 @@ | ||
bash-completion | ||
bzip2 | ||
diffutils | ||
dnf-plugins-core | ||
fpaste | ||
findutils | ||
git | ||
gnupg | ||
gnupg2-smime | ||
hostname | ||
iputils | ||
jwhois | ||
keyutils | ||
less | ||
lsof | ||
man-db | ||
man-pages | ||
mlocate | ||
mtr | ||
openssh-clients | ||
PackageKit-command-not-found | ||
passwd | ||
pigz | ||
procps-ng | ||
rsync | ||
sudo | ||
tcpdump | ||
time | ||
traceroute | ||
tree | ||
unzip | ||
vte-profile | ||
wget | ||
which | ||
words | ||
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,20 @@ | ||
FROM registry.fedoraproject.org/fedora:30 | ||
|
||
ENV NAME=fedora-toolbox VERSION=30 | ||
LABEL com.redhat.component="$NAME" \ | ||
name="$FGC/$NAME" \ | ||
version="$VERSION" \ | ||
usage="This image is meant to be used with the fedora-toolbox command" \ | ||
summary="Base image for creating Fedora toolbox containers" \ | ||
maintainer="Debarshi Ray <[email protected]>" | ||
|
||
COPY README.md / | ||
|
||
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf | ||
RUN dnf -y swap coreutils-single coreutils-full | ||
|
||
COPY extra-packages / | ||
RUN dnf -y install $(<extra-packages) | ||
RUN rm /extra-packages | ||
|
||
CMD /bin/sh |
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 @@ | ||
../../../README.md |
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,37 @@ | ||
bash-completion | ||
bzip2 | ||
diffutils | ||
dnf-plugins-core | ||
fpaste | ||
findutils | ||
git | ||
gnupg | ||
gnupg2-smime | ||
hostname | ||
iputils | ||
jwhois | ||
keyutils | ||
less | ||
lsof | ||
man-db | ||
man-pages | ||
mlocate | ||
mtr | ||
openssh-clients | ||
PackageKit-command-not-found | ||
passwd | ||
pigz | ||
procps-ng | ||
rsync | ||
sudo | ||
tcpdump | ||
time | ||
traceroute | ||
tree | ||
unzip | ||
vte-profile | ||
wget | ||
which | ||
words | ||
xz | ||
zip |