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