File Dockerfile of Package wicked2nm-leap16.0
#!BuildTag: wicked2nm-leap16.0
FROM opensuse/leap:16.0
# do not install the files marked as documentation (use "rpm --excludedocs")
RUN sed -i -e "s/^.*rpm.install.excludedocs.*/rpm.install.excludedocs = yes/" /etc/zypp/zypp.conf
# install needed packages
RUN zypper --non-interactive install --no-recommends \
NetworkManager \
NetworkManager-ovs \
dbus-1-daemon \
gcc \
git \
cargo \
wicked
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]