FROM registry.fedoraproject.org/fedora:25 LABEL MAINTAINER='http://fedoraproject.org/wiki/Cloud' ENV NAME=apache VERSION=0.1 RELEASE=1 # Atomic RUN label, enables the atomic cli LABEL RUN='docker run -d -p 80:80 $IMAGE' \ BZComponent="$NAME" \ Name="$FGC/$NAME" \ Version="$VERSION" \ Release="$RELEASE.$DISTTAG" \ Architecture="$ARCH" # Updating dependencies, installing Apache and cleaning dnf caches to reduce # container size RUN dnf -y update && dnf -y install httpd && dnf clean all # Creating placeholder file to be served by apache RUN echo "Apache" >> /var/www/html/index.html # We open 80 port, the default one for HTTP for Apache server to listen on EXPOSE 80 # Simple startup script to avoid some issues observed with container restart ADD run-apache.sh /run-apache.sh RUN chmod -v +x /run-apache.sh CMD ["/run-apache.sh"]