mirror of
				https://github.com/factoriotools/factorio-docker.git
				synced 2025-11-04 10:49:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			250 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			250 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM ubuntu:latest
 | 
						|
 | 
						|
MAINTAINER zopanix@gmail.com
 | 
						|
 | 
						|
WORKDIR /opt
 | 
						|
 | 
						|
COPY ./factorio.tar.gz /opt
 | 
						|
 | 
						|
COPY ./smart_launch.sh /opt
 | 
						|
 | 
						|
RUN tar -xzf factorio.tar.gz
 | 
						|
 | 
						|
WORKDIR /opt/factorio
 | 
						|
 | 
						|
CMD ["./smart_launch.sh"]
 | 
						|
 | 
						|
EXPOSE 34197/udp
 | 
						|
 | 
						|
VOLUME "/opt/factorio/saves"
 | 
						|
 |