Ian Howell d302d97771 AIAP: Remove personal docker images
Change-Id: I1a86c4d0e89ce8b8905eb5358dd58e9bd2416858
2021-07-15 13:56:08 -05:00

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