mirror of
				https://github.com/krahets/hello-algo.git
				synced 2025-11-03 21:58:48 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			360 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			360 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.9.0-alpine
 | 
						|
 | 
						|
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade pip
 | 
						|
RUN pip install -i https://pypi.tuna.tsinghua.edu.cn/simple mkdocs-material==9.0.13
 | 
						|
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
COPY docs /app/build
 | 
						|
COPY mkdocs.yml /app/mkdocs.yml
 | 
						|
 | 
						|
RUN mkdir -p ./build/overrides && mkdocs build
 | 
						|
 | 
						|
EXPOSE 8000
 | 
						|
 | 
						|
CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]
 |