13 lines
		
	
	
		
			116 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			116 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								FROM node:16
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								WORKDIR /docker
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								COPY package.json ./
							 | 
						||
| 
								 | 
							
								COPY yarn.lock ./
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								RUN yarn
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								COPY . .
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								CMD ["node", "index.js"]
							 |