mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-04 06:49:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			246 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			246 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM node:20-slim as builder
 | 
						|
WORKDIR /usr/src/app
 | 
						|
COPY package.json .
 | 
						|
COPY package-lock.json* .
 | 
						|
RUN npm ci
 | 
						|
 | 
						|
FROM node:20-slim
 | 
						|
WORKDIR /usr/src/app
 | 
						|
COPY --from=builder /usr/src/app/ /usr/src/app/
 | 
						|
COPY . .
 | 
						|
CMD ["npx", "quartz", "build", "--serve"]
 |