mirror of
https://github.com/linux-system-roles/network.git
synced 2026-01-23 18:35:13 +00:00
Removed `tests_wireless_nm.yml` as github CI has no mac80211_hwsim kernel module. Signed-off-by: Gris Ge <fge@redhat.com>
11 lines
345 B
Text
11 lines
345 B
Text
FROM quay.io/centos/centos:centos7
|
|
|
|
RUN yum -y install epel-release && \
|
|
yum -y upgrade && \
|
|
yum -y install NetworkManager NetworkManager-wifi \
|
|
procps-ng iproute ansible openssh-server openssh-clients \
|
|
dnsmasq hostapd wpa_supplicant openssl ethtool iputils && yum clean all
|
|
|
|
VOLUME [ "/sys/fs/cgroup" ]
|
|
|
|
CMD ["/usr/sbin/init"]
|