File Dockerfile of Package openSUSE-Leap-42.3-Container
#!BuildTag: my_container FROM opensuse/leap:42.3 # Define your additional repositories here #RUN zypper ar http://download.opensuse.org/repositories/openSUSE:Tools/openSUSE_Leap_42.3/ "openSUSE:Tools" #RUN zypper ref # NOTE: the repositories from your project config are used by default # Put additional files into container #ADD . README.MY_APPLIANCE #COPY MY.FILE /opt/my_space # Install further packages using zypper #RUN zypper install -y osc # setup runtime #USER wwwrun #WORKDIR /srv/www # This command will get executed on container start by default #CMD /usr/sbin/httpd2-prefork