File Dockerfile of Package migrate-wicked-devel
# Defines the tag for OBS and build script builds:
#!BuildTag: migrate-wicked-devel
FROM opensuse/tumbleweed
# 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
# Work around https://github.com/openSUSE/obs-build/issues/487
RUN zypper install -y openSUSE-release-appliance-docker
RUN zypper install -y \
git-core \
scout-command-not-found \
dbus-1 \
systemd \
NetworkManager \
iproute2 \
bash-completion \
libopenssl-devel \
vim \
emacs-nox \
jq \
gawk \
xclip \
gcc
RUN zypper install -y cargo
#COPY rust-install.service /etc/systemd/system/
#RUN zypper in -y rustup
#RUN rustup toolchain install stable
RUN systemctl enable NetworkManager
# run systemd
ENTRYPOINT ["/usr/sbin/init"]