File Dockerfile of Package wicked2nm-tumbleweed
#!BuildTag: wicked2nm-tumbleweed FROM opensuse/tumbleweed:latest # 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"]