169f91669f
It would be good to have Dockerfiles for multiple Fedora versions, and possibly even other operating systems like Red Hat Enterprise Linux or CentOS, so that people can use the toolbox on different host OSes. In the future, it would be nice to have multiple toolbox containers corresponding to different OSes exist side by side. One could then have a Fedora 29 environment on a Fedora 28 host and so on.
20 lines
586 B
Docker
20 lines
586 B
Docker
FROM registry.fedoraproject.org/fedora:28
|
|
|
|
ENV NAME=fedora-toolbox VERSION=28
|
|
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 <rishi@fedoraproject.org>"
|
|
|
|
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
|