boltron/Dockerfile
2017-11-14 14:18:51 -06:00

16 lines
897 B
Docker

FROM registry.fedoraproject.org/fedora:26-modular
LABEL MAINTAINER "Langdon White" <langdon@fedoraproject.org>
ENV NAME=boltron VERSION=1 RELEASE=3 ARCH=x86_64
# the value of com.redhat.component label is utilized as a container image name inside candidate registry
# since the container image passed the review and has a production dist-git repo,
# there should be a "boltron" component in bugzilla
LABEL com.redhat.component="boltron" \
name="$FGC/$NAME" \
version="$VERSION" \
release="$RELEASE.$DISTTAG" \
usage="docker run --rm -it f26-modular/boltron /bin/bash" \
summary="Boltron will provide you a running and useful version of the Modular Server Preview." \
description="For more info, please see the upstream modularity website: https://docs.pagure.org/modularity/"
COPY ./README.md /README.md
RUN microdnf install dnf
CMD ["/bin/bash"]