mirror of
				https://github.com/alljoynsville/openwrt-builder
				synced 2025-11-04 03:58:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			446 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			446 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 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/12.09/openwrt.git &&\
 | 
						|
    sudo -iu openwrt openwrt/scripts/feeds update
 |