You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
543 B
25 lines
543 B
ARG BASE_IMAGE=quay.io/airshipit/aiap-base:latest |
|
FROM ${BASE_IMAGE} |
|
|
|
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 \ |
|
acl \ |
|
nfs4-acl-tools \ |
|
python3-apt \ |
|
python3-jmespath \ |
|
python3-lxml \ |
|
virt-manager \ |
|
virtinst \ |
|
;\ |
|
rm -rf /var/lib/apt/lists/* |
|
|
|
COPY assets /opt/assets/ |
|
RUN cp -ravf /opt/assets/* / ;\ |
|
rm -rf /opt/assets |
|
|
|
ENTRYPOINT /entrypoint.sh
|
|
|