mirror of
https://github.com/alljoynsville/openwrt-builder
synced 2025-06-07 07:56:33 +00:00
11 lines
428 B
Docker
11 lines
428 B
Docker
FROM ubuntu:13.10
|
|
|
|
RUN apt-get update &&\
|
|
apt-get install -y git-core subversion build-essential gcc-multilib \
|
|
libncurses5-dev zlib1g-dev gawk flex gettext &&\
|
|
apt-get clean &&\
|
|
useradd -m openwrt &&\
|
|
echo 'openwrt ALL=NOPASSWD: ALL' > /etc/sudoers.d/openwrt &&\
|
|
sudo -iu openwrt git clone git://git.openwrt.org/12.09/openwrt.git &&\
|
|
sudo -iu openwrt openwrt/scripts/feeds update
|