mirror of
				https://github.com/Unleash/unleash.git
				synced 2025-10-27 11:02:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			110 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			110 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:5.8
 | |
| 
 | |
| COPY . .
 | |
| 
 | |
| RUN npm install --production && \
 | |
|     npm run build
 | |
| 
 | |
| EXPOSE 4242
 | |
| 
 | |
| CMD node server.js
 |