mirror of
https://gitlab.com/openlp/runners.git
synced 2024-12-25 12:34:07 +00:00
Create a docker file for building the documentation
This commit is contained in:
parent
c427bf0712
commit
2bdb78e11d
@ -39,3 +39,13 @@ build-fedora:
|
||||
- docker push openlp/fedora:latest
|
||||
only:
|
||||
- master@openlp/runners
|
||||
|
||||
build-documentation:
|
||||
stage: build
|
||||
script:
|
||||
- docker pull openlp/documentation || true
|
||||
- docker build --cache-from openlp/documentation --tag openlp/documentation:$CI_COMMIT_SHA --tag openlp/documentation:latest -f Dockerfile.documentation .
|
||||
- docker push openlp/documentation:$CI_COMMIT_SHA
|
||||
- docker push openlp/documentation:latest
|
||||
only:
|
||||
- master@openlp/runners
|
||||
|
3
Dockerfile.documentation
Normal file
3
Dockerfile.documentation
Normal file
@ -0,0 +1,3 @@
|
||||
FROM alpine:latest
|
||||
|
||||
RUN apk --no-cache add py3-sphinx py3-sphinx_rtd_theme texlive-full
|
Loading…
Reference in New Issue
Block a user