############################################################
# 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

RUN bash /installfiles/install.sh

# Run in user openstack
USER openstack
