Create simplestreams cache image
- Create image with simplestreams package - Mirror current upstream maas.io xenial images - Run apache on port 8888 to serve the simplestreams repo Change-Id: I121d62894464ae62a2a59bd62a2448835a1f67af
This commit is contained in:
29
images/sstream-cache/Dockerfile
Normal file
29
images/sstream-cache/Dockerfile
Normal file
@@ -0,0 +1,29 @@
|
||||
FROM ubuntu:16.04
|
||||
|
||||
ENV IMAGE_SRC https://images.maas.io/ephemeral-v3/daily/
|
||||
|
||||
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"]
|
||||
Reference in New Issue
Block a user