mirror of
				https://github.com/factoriotools/factorio-docker.git
				synced 2025-11-03 18:29:06 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			588 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			588 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM debian:latest
 | 
						|
 | 
						|
MAINTAINER zopanix@gmail.com
 | 
						|
 | 
						|
WORKDIR /opt
 | 
						|
 | 
						|
COPY ./smart_launch.sh /opt
 | 
						|
 | 
						|
CMD ["./smart_launch.sh"]
 | 
						|
 | 
						|
EXPOSE 34197/udp
 | 
						|
 | 
						|
VOLUME "/opt/factorio/saves"
 | 
						|
 | 
						|
RUN echo "# Installing curl" && \
 | 
						|
    apt-get update && \
 | 
						|
    apt-get install -y curl && \
 | 
						|
    echo "# Downloading and unzipping factorio" && \
 | 
						|
    curl -L -k https://www.factorio.com/get-download/0.12.26/headless/linux64 | tar -xzf - && \
 | 
						|
    echo "# Cleaning" && \
 | 
						|
    apt-get remove -y --purge curl  && \
 | 
						|
    apt-get autoremove -y --purge && \
 | 
						|
    apt-get clean && \
 | 
						|
    rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
 |