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.
		
		
		
		
		
			
		
			
				
	
	
		
			33 lines
		
	
	
		
			761 B
		
	
	
	
		
			Docker
		
	
			
		
		
	
	
			33 lines
		
	
	
		
			761 B
		
	
	
	
		
			Docker
		
	
| # Convert .rst files to .html in temporary build container
 | |
| FROM python:3.8-alpine3.14 AS build
 | |
| 
 | |
| ARG version=master
 | |
| ENV VERSION=$version
 | |
| 
 | |
| COPY requirements.txt /requirements.txt
 | |
| COPY . /docs
 | |
| 
 | |
| RUN apk add --no-cache --virtual .build-deps \
 | |
|     gcc musl-dev \
 | |
|  && pip3 install -r /requirements.txt \
 | |
|  && mkdir -p /build/$VERSION \
 | |
|  && sphinx-build -W /docs /build/$VERSION \
 | |
|  && apk del .build-deps
 | |
| 
 | |
| 
 | |
| # Build nginx deployment image including generated html
 | |
| FROM nginx:1.21-alpine
 | |
| 
 | |
| ARG version=master
 | |
| ARG pinned_version=master
 | |
| ENV VERSION=$version
 | |
| ENV TZ Etc/UTC
 | |
| LABEL version=$VERSION
 | |
| 
 | |
| COPY ./nginx.conf /etc/nginx/conf.d/default.conf
 | |
| COPY --from=build /build/$VERSION /build/$VERSION
 | |
| 
 | |
| EXPOSE 80/tcp
 | |
| 
 | |
| CMD nginx -g "daemon off;"
 | |
| RUN echo $pinned_version >> /version |