mirror of
				https://github.com/bcye/structured-wikivoyage-exports.git
				synced 2025-10-30 14:42:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			194 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| FROM node:22
 | |
| 
 | |
| WORKDIR /app
 | |
| 
 | |
| COPY package.json .
 | |
| COPY package-lock.json .
 | |
| 
 | |
| RUN npm install
 | |
| 
 | |
| COPY index.ts .
 | |
| 
 | |
| CMD [ "node", "--max-old-space-size=4096", "--experimental-strip-types", "index.ts" ]
 | 
