File Dockerfile of Package openSUSE-Leap-15.0-Container
#!BuildTag: my_container
FROM opensuse/leap:15.0
# Define your additional repositories here
#RUN zypper ar http://download.opensuse.org/repositories/openSUSE:Tools/openSUSE_Leap_15.0/ "openSUSE:Tools"
#RUN zypper ref
# NOTE: the repositories from the base container 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