21 lines
586 B
Text
21 lines
586 B
Text
|
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 <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
|