File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1
1
2
2
## Changes Between 2.10.0 and 3.0.0 (unreleased)
3
3
4
+ ### Migration to clj-commons
5
+
6
+ Project was migrated to clj-commons org and new source is [ clj-commons/metrics-clojure] ( https://github.com/clj-commons/metrics-clojure/ )
7
+ Added ORIGINATOR and CODEOWNERS files.
8
+
9
+ ### Dockerfile for documentation build
10
+
11
+ Added a Dockerfile using sphinx image so documentation can be built without having sphinx locally.
12
+
4
13
5
14
### Riemann Client updated
6
15
Original file line number Diff line number Diff line change @@ -15,8 +15,11 @@ FROM ${SPHINX_IMAGE}:${SPHINX_TAG}
15
15
WORKDIR /docs
16
16
COPY . /docs
17
17
18
+ # Documentation is generated in build dir
18
19
VOLUME [ "/docs/build" ]
19
20
21
+ # Entrypoint is the makefile run with --entrypoint bash to change
20
22
ENTRYPOINT [ "make" ]
23
+ # By default we run the html make target. Use help to see full list.
21
24
CMD [ "html" ]
22
25
You can’t perform that action at this time.
0 commit comments