You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
	
	
		
			20 lines
		
	
	
		
			233 B
		
	
	
	
		
			Docker
		
	
		
		
			
		
	
	
			20 lines
		
	
	
		
			233 B
		
	
	
	
		
			Docker
		
	
| 
								 
											3 years ago
										 
									 | 
							
								FROM node:lts
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# copy resource
							 | 
						||
| 
								 | 
							
								RUN mkdir /app
							 | 
						||
| 
								 | 
							
								COPY ./ /app
							 | 
						||
| 
								 | 
							
								WORKDIR /app
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								# build
							 | 
						||
| 
								 | 
							
								RUN npm install pnpm -g
							 | 
						||
| 
								 | 
							
								RUN pnpm bootstrap
							 | 
						||
| 
								 | 
							
								WORKDIR /app/service
							 | 
						||
| 
								 | 
							
								RUN pnpm install
							 | 
						||
| 
								 | 
							
								WORKDIR /app
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								EXPOSE 1002
							 | 
						||
| 
								 | 
							
								EXPOSE 3002
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								CMD ["/bin/bash","./start.sh"]
							 | 
						||
| 
								 | 
							
								
							 |