forked from OpenWF/SpaceNinjaServer
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			764 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			764 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:18-alpine3.19
 | 
						|
 | 
						|
ENV APP_MONGODB_URL=mongodb://mongodb:27017/openWF
 | 
						|
ENV APP_MY_ADDRESS=localhost
 | 
						|
ENV APP_HTTP_PORT=80
 | 
						|
ENV APP_HTTPS_PORT=443
 | 
						|
ENV APP_AUTO_CREATE_ACCOUNT=true
 | 
						|
ENV APP_SKIP_STORY_MODE_CHOICE=true
 | 
						|
ENV APP_SKIP_TUTORIAL=true
 | 
						|
ENV APP_SKIP_ALL_DIALOGUE=true
 | 
						|
ENV APP_UNLOCK_ALL_SCANS=true
 | 
						|
ENV APP_UNLOCK_ALL_MISSIONS=true
 | 
						|
ENV APP_UNLOCK_ALL_QUESTS=true
 | 
						|
ENV APP_COMPLETE_ALL_QUESTS=true
 | 
						|
ENV APP_INFINITE_RESOURCES=true
 | 
						|
ENV APP_UNLOCK_ALL_SHIP_FEATURES=true
 | 
						|
ENV APP_UNLOCK_ALL_SHIP_DECORATIONS=true
 | 
						|
ENV APP_UNLOCK_ALL_FLAVOUR_ITEMS=true
 | 
						|
ENV APP_UNLOCK_ALL_SKINS=true
 | 
						|
ENV APP_UNIVERSAL_POLARITY_EVERYWHERE=true
 | 
						|
ENV APP_SPOOF_MASTERY_RANK=-1
 | 
						|
 | 
						|
RUN apk add --no-cache bash sed wget jq
 | 
						|
 | 
						|
COPY . /app
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
 |