Feature-rich wifi hotspot creator for Linux which provides both GUI and command-line interface. It is also able to create a hotspot using the same wifi card which is connected to an AP already ( Similar to Windows 10).
docker pull lakinduakash/linux-wifi-hotspot:latest
docker run -d --name linux-wifi-hotspot --restart always lakinduakash/linux-wifi-hotspot:latest
FROM ubuntu:20.04
ARG GIT_TAG=master
ARG GIT_URL=https://github.com/lakinduakash/linux-wifi-hotspot/archive/${GIT_TAG}.tar.gz
# Retrieve dependencies
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y debhelper devscripts build-essential pkg-config libgtk-3-dev
# Clone source code
WORKDIR /root
RUN curl -L --output linux-wifi-hotspot.tar.gz --silent ${GIT_URL}
RUN tar -xzf linux-wifi-hotspot.tar.gz
WORKDIR /root/linux-wifi-hotspot-${GIT_TAG}
RUN debuild -uc -us
ENTRYPOINT ["/bin/bash"]