mirror of
				https://github.com/factoriotools/factorio-docker.git
				synced 2025-10-31 00:48:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			1017 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1017 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM frolvlad/alpine-glibc:alpine-3.4
 | |
| 
 | |
| MAINTAINER https://github.com/dtandersen/docker_factorio_server
 | |
| 
 | |
| COPY ./factorio.crt /opt/factorio.crt
 | |
| 
 | |
| ENV VERSION=0.14.16 \
 | |
|     SHA1=e27c658bf8a7579b662a1c34815daa223e57bc90
 | |
| 
 | |
| RUN apk --update --no-cache add bash curl && \
 | |
|     curl -sSL --cacert /opt/factorio.crt \
 | |
|         https://www.factorio.com/get-download/$VERSION/headless/linux64 \
 | |
|         -o /tmp/factorio_headless_x64_$VERSION.tar.gz && \
 | |
|     echo "$SHA1  /tmp/factorio_headless_x64_$VERSION.tar.gz" | sha1sum -c && \
 | |
|     tar xzf /tmp/factorio_headless_x64_$VERSION.tar.gz --directory /opt && \
 | |
|     rm /tmp/factorio_headless_x64_$VERSION.tar.gz && \
 | |
|     cp /opt/factorio/data/server-settings.example.json /opt/factorio/data/server-settings.json && \
 | |
|     cp /opt/factorio/data/map-gen-settings.example.json /opt/factorio/data/map-gen-settings.json && \
 | |
|     apk --no-cache del curl
 | |
| 
 | |
| VOLUME /opt/factorio/saves /opt/factorio/mods
 | |
| 
 | |
| EXPOSE 34197/udp 27015/tcp
 | |
| 
 | |
| COPY ./docker-entrypoint.sh /
 | |
| 
 | |
| CMD ["/docker-entrypoint.sh"]
 |