use dnsmasq-full

pull/1/head
Jordan Sokolic 2020-02-16 09:00:46 +02:00
parent f67d8a78c1
commit 779912a940
1 changed files with 4 additions and 2 deletions

View File

@ -2,13 +2,15 @@ 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 && \
RUN opkg remove dnsmasq && \
opkg update && \
opkg install luci \
wpa-supplicant \
hostapd \
iw-full \
kmod-mac80211 \
iperf3
iperf3 \
dnsmasq-full
COPY etc/config/network.tpl /etc/config/network
COPY etc/config/wireless.tpl /etc/config/wireless
CMD [ "/sbin/init" ]