All checks were successful
		
		
	
	ci/woodpecker/push/woodpecker Pipeline was successful
				
			
		
			
				
	
	
		
			12 lines
		
	
	
		
			286 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			286 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM python:3.14 AS builder
 | 
						|
RUN apt-get update -y
 | 
						|
RUN apt-get install -y pipx
 | 
						|
RUN	pip install poetry
 | 
						|
WORKDIR /src
 | 
						|
COPY . .
 | 
						|
RUN	python -m poetry install --no-root
 | 
						|
RUN	python -m poetry run mkdocs build
 | 
						|
 | 
						|
FROM nginxinc/nginx-unprivileged
 | 
						|
COPY --from=builder /src/site /usr/share/nginx/html
 |