mirror of
				https://github.com/ZetaKebab/quartz.git
				synced 2025-11-04 06:49:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			252 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			252 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM alpine:3.16
 | 
						|
 | 
						|
RUN apk add --no-cache go hugo git make perl
 | 
						|
RUN go install github.com/jackyzha0/hugo-obsidian@latest
 | 
						|
ENV PATH="/root/go/bin:$PATH"
 | 
						|
RUN git clone https://github.com/jackyzha0/quartz.git /quartz
 | 
						|
 | 
						|
WORKDIR /quartz
 | 
						|
 | 
						|
CMD ["make", "serve"]
 |