10 lines
261 B
Docker
10 lines
261 B
Docker
FROM alpine
|
|
|
|
MAINTAINER Jaka Hudoklin <offlinehacker@users.noreply.github.com>
|
|
|
|
RUN apk add --no-cache bash hostapd iptables dhcp docker iproute2 iw
|
|
RUN echo "" > /var/lib/dhcp/dhcpd.leases
|
|
ADD wlanstart.sh /bin/wlanstart.sh
|
|
|
|
ENTRYPOINT [ "/bin/wlanstart.sh" ]
|