Blame Dockerfile

88351f1
FROM registry.fedoraproject.org/fedora:30
b2678e8
88351f1
ENV NAME=fedora-toolbox VERSION=30
b2678e8
LABEL com.redhat.component="$NAME" \
b2678e8
      name="$FGC/$NAME" \
b2678e8
      version="$VERSION" \
b2678e8
      usage="This image is meant to be used with the fedora-toolbox command" \
b2678e8
      summary="Base image for creating Fedora toolbox containers" \
b2678e8
      maintainer="Debarshi Ray <rishi@fedoraproject.org>"
b2678e8
b2678e8
COPY README.md /
b2678e8
b2678e8
RUN sed -i '/tsflags=nodocs/d' /etc/dnf/dnf.conf
b2678e8
RUN dnf -y swap coreutils-single coreutils-full
b2678e8
b2678e8
COPY extra-packages /
ce76b52
RUN dnf -y install $(
b2678e8
RUN rm /extra-packages
b2678e8
b2678e8
CMD /bin/sh