14 lines
447 B
Docker
14 lines
447 B
Docker
FROM scratch
|
|
# ADD https://downloads.openwrt.org/releases/19.07.1/targets/x86/64/openwrt-19.07.1-x86-64-generic-rootfs.tar.gz \
|
|
ADD openwrt-19.07.1-x86-64-generic-rootfs.tar.gz /
|
|
RUN mkdir -p /var/lock
|
|
RUN opkg update && \
|
|
opkg install luci \
|
|
wpa-supplicant \
|
|
hostapd \
|
|
iw-full \
|
|
kmod-mac80211 \
|
|
iperf3
|
|
COPY etc/config/network /etc/config/network
|
|
COPY etc/config/wireless /etc/config/wireless
|
|
CMD [ "/sbin/init" ] |