
* Add script and dockerfile to build ironic image using loci image build * Add dockerfile for apache and dnsmasq * Add make files and readme for all images Change-Id: Ia37b4608116b5705512faec1d966b45e413a1760 Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
19 lines
740 B
Docker
19 lines
740 B
Docker
FROM ubuntu:bionic
|
|
|
|
LABEL org.opencontainers.image.authors='airship-discuss@lists.airshipit.org, irc://#airshipit@freenode' \
|
|
org.opencontainers.image.url='https://airshipit.org' \
|
|
org.opencontainers.image.documentation='https://airship-images.readthedocs.org' \
|
|
org.opencontainers.image.source='https://opendev.org/airship/images' \
|
|
org.opencontainers.image.vendor='The Airship Authors' \
|
|
org.opencontainers.image.licenses='Apache-2.0'
|
|
|
|
RUN set -xe \
|
|
&& export DEBIAN_FRONTEND=noninteractive \
|
|
&& apt-get update -qq && apt-get -y dist-upgrade \
|
|
&& apt-get install -y apache2 \
|
|
&& apt-get autoremove -y --purge \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt-get/lists/*
|
|
|
|
CMD ["/bin/bash"]
|