Skip to content

Commit 1859985

Browse files
committed
Docs Dockerfile
1 parent d1ae950 commit 1859985

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,5 @@ build/
77
dist/
88
results
99
work
10-
*.egg-info/
10+
*.egg-info/
11+
deploy.sh

Dockerfile

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
FROM sphinxdoc/sphinx as builder
2+
3+
WORKDIR /docs
4+
COPY ./ ./
5+
RUN rm -rf docs/build
6+
7+
RUN pip install sphinx_rtd_theme
8+
RUN pip install .
9+
10+
RUN cd docs && make html
11+
12+
FROM nginx:alpine
13+
COPY --from=builder /docs/docs/build/html /usr/share/nginx/html

docs/source/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Changelog
44
Release 0.3
55
~~~~~~~~~~~
66

7-
`3rd June, 2022`
7+
`4th June, 2022`
88

99
* Allow module-level run methods for directly running pipelines.
1010
* Allow for running pipelines with different Nextflow versions.

0 commit comments

Comments
 (0)