23 lines
480 B
Docker
23 lines
480 B
Docker
FROM quay.io/airshipit/aiap-base:latest
|
|
|
|
SHELL ["bash", "-exc"]
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
# Update distro and install ansible
|
|
RUN apt-get update ;\
|
|
apt-get dist-upgrade -y ;\
|
|
apt-get install -y \
|
|
python3-apt \
|
|
python3-lxml \
|
|
virtinst \
|
|
nfs4-acl-tools \
|
|
acl \
|
|
virt-manager;\
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY assets /opt/assets/
|
|
RUN cp -ravf /opt/assets/* / ;\
|
|
rm -rf /opt/assets
|
|
|
|
ENTRYPOINT /entrypoint.sh
|