Blame Dockerfile

e7d30ac
FROM registry.fedoraproject.org/fedora:34
b2678e8
e7d30ac
ENV NAME=fedora-toolbox VERSION=34
fccc0ad
LABEL com.github.containers.toolbox="true" \
fccc0ad
      com.github.debarshiray.toolbox="true" \
6b3e14f
      com.redhat.component="$NAME" \
d863edf
      name="$NAME" \
b2678e8
      version="$VERSION" \
47193f4
      usage="This image is meant to be used with the 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
54f5f60
COPY missing-docs /
54f5f60
RUN dnf -y reinstall $(
54f5f60
RUN rm /missing-docs
54f5f60
b2678e8
COPY extra-packages /
ce76b52
RUN dnf -y install $(
b2678e8
RUN rm /extra-packages
b2678e8
c4ab8c7
RUN dnf clean all
c4ab8c7
b2678e8
CMD /bin/sh