12 lines
		
	
	
		
			468 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
		
			468 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| 
								 | 
							
								## centos6 image to use for building hawk
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								FROM docker.io/centos:6
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								COPY vault-centos6.repo /etc/yum.repos.d/CentOS-Base.repo
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN groupadd -g 1000 rockstar && useradd -u 1000 -g 1000 -m rockstar && groupmems -g wheel -a rockstar
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN ulimit -n 1024 && yum -y install mysql-devel libffi-devel rpm-build gcc gcc-c++ sudo readline-devel ncurses-devel
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN echo -e '%wheel        ALL=(ALL)       NOPASSWD: ALL\nrockstar ALL=(ALL) NOPASSWD: ALL' > /etc/sudoers.d/99-wheel
							 |