-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[docs] Fix operator docs no longer being built and published
- Loading branch information
1 parent
ae3e5be
commit d9178fe
Showing
3 changed files
with
20 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Dockerfile for building docs is stored in a separate dir from the docs, | ||
# otherwise the generated site will unnecessarily contain the Dockerfile | ||
|
||
FROM python:3.5-alpine | ||
LABEL maintainer="The M3DB Authors <[email protected]>" | ||
|
||
WORKDIR /m3db | ||
EXPOSE 8000 | ||
|
||
# mkdocs needs git-fast-import which was stripped from the default git package | ||
# by default to reduce size | ||
RUN pip install \ | ||
mkdocs==0.17.3 \ | ||
pymdown-extensions==6.0 \ | ||
mkdocs-material==2.7.3 | ||
RUN apk add --no-cache git-fast-import openssh-client | ||
ENTRYPOINT [ "/bin/ash", "-c" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters