########################################################
####
# Dockerfile to build DJ Installed Containers# Based on EulerOS 2.2
########################################################
####
# Set the base image to EulerOS
FROM basepythonimage:${BASE_IMG_VERSION}
# Copy installation file(s) from the current directory
COPY ./installfiles /installfiles
# Install
RUN bash -x /installfiles/install.sh
# delete docker installfiles rpm
RUN rm -rf /installfiles/repo/*.rpm && rm -rf /installfiles/comp/karbor/*.rpm
# Run in user openstack
USER openstack
