9 lines
		
	
	
		
			137 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			137 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM mwaeckerlin/mingw:latest
 | 
						|
 | 
						|
COPY ./build.sh /tmp/
 | 
						|
 | 
						|
RUN bash /tmp/build.sh
 | 
						|
 | 
						|
# Expose /home as workin dir
 | 
						|
WORKDIR /home
 | 
						|
VOLUME ["/home"] |