bfa8c97d3a
l is to let user customize the base image of the component by passing FROM=myimage during the build process. This would let any project leveraging Airship ensure that the base image is matching the security requirements for that project and still use the same Dockerfile. This will also ease the control of the /etc/apt/source.list and thereby the result of apt-get update/upgrade procedure. 2. The above goal is achievable by using docker-ce feature such as: ARG FROM="defaultbaseimage:xx" FROM ${FROM} For this reason, the installation of docker.io in the Zuul gating is beeing replaced by docker-ce. 3. Third Goal is to bring consistency with the other compoenents leveraging Helm such as the openstack-helm and potentially use bindep the same way the LOCI images are to ensure 4. The new syntax in the Dockerfile is still commented out until the associated image builder have been updated to use docker-ce as they have been for the LOCI images. Change-Id: I9a9d63329bea2b562f297705dc51661896a592f2
32 lines
1.1 KiB
Docker
32 lines
1.1 KiB
Docker
ARG FROM=ubuntu:16.04
|
|
FROM ${FROM}
|
|
|
|
ARG SSTREAM_IMAGE=https://images.maas.io/ephemeral-v3/daily/
|
|
ENV IMAGE_SRC ${SSTREAM_IMAGE}
|
|
|
|
RUN apt-get -qq update && \
|
|
apt install -y simplestreams \
|
|
apache2 \
|
|
gpgv \
|
|
ubuntu-cloudimage-keyring \
|
|
python-certifi --no-install-recommends
|
|
|
|
RUN sstream-mirror --keyring=/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg $IMAGE_SRC \
|
|
/var/www/html/maas/images/ephemeral-v3/daily 'arch=amd64' 'release~xenial' --max=1 --progress
|
|
|
|
RUN sstream-mirror --keyring=/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg $IMAGE_SRC \
|
|
/var/www/html/maas/images/ephemeral-v3/daily 'os~(grub*|pxelinux)' --max=1 --progress
|
|
|
|
RUN sh -c 'echo "" > /etc/apache2/ports.conf'
|
|
|
|
ENV APACHE_RUN_USER www-data
|
|
ENV APACHE_RUN_GROUP www-data
|
|
ENV APACHE_PID_FILE /var/run/apache2.pid
|
|
ENV APACHE_RUN_DIR /var/run/
|
|
ENV APACHE_LOCK_DIR /var/lock
|
|
ENV APACHE_LOG_DIR /var/log/
|
|
ENV LANG C
|
|
|
|
ENTRYPOINT ["/usr/sbin/apache2"]
|
|
CMD ["-E", "/dev/stderr","-c","ErrorLog /dev/stderr","-c","Listen 8888","-c","ServerRoot /etc/apache2","-c","DocumentRoot /var/www/html","-D","FOREGROUND"]
|