15 lines
778 B
Docker
15 lines
778 B
Docker
FROM registry.fedoraproject.org/fedora:26-modular
|
|
LABEL MAINTAINER "Langdon White" <langdon@fedoraproject.org>
|
|
ENV NAME=boltron VERSION=1 RELEASE=1 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."
|
|
COPY ./README.md /README.md
|
|
RUN microdnf install dnf
|
|
CMD ["/bin/bash"]
|