-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deployed f18b2f3 with MkDocs version: 1.4.0
- Loading branch information
Liam Burgoyne
committed
Oct 6, 2022
0 parents
commit ff3fb24
Showing
57 changed files
with
10,876 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
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,82 @@ | ||
ARG base_image=python | ||
|
||
FROM minidocks/python AS python | ||
|
||
FROM minidocks/weasyprint AS weasyprint | ||
|
||
FROM $base_image AS latest | ||
|
||
ARG mkdocs_version=1.3.1 | ||
|
||
RUN apk add py3-regex py3-pynacl py3-ruamel.yaml && pip install \ | ||
mkdocs==$mkdocs_version \ | ||
\ | ||
mkdocs-abs-rel-plugin \ | ||
mkdocs-add-number-plugin \ | ||
mkdocs-autolinks-plugin \ | ||
mkdocs-autorefs \ | ||
mkdocs-awesome-pages-plugin \ | ||
mkdocs-codeinclude-plugin \ | ||
mkdocs-enumerate-headings-plugin \ | ||
mkdocs-exclude \ | ||
mkdocs-git-authors-plugin \ | ||
mkdocs-git-committers-plugin \ | ||
mkdocs-git-revision-date-localized-plugin \ | ||
mkdocs-img2fig-plugin \ | ||
mkdocs-include-markdown-plugin \ | ||
mkdocs-kroki-plugin \ | ||
mkdocs-localsearch \ | ||
mkdocs-macros-plugin \ | ||
mkdocs-markdownextradata-plugin \ | ||
mkdocs-merge \ | ||
mkdocs-minify-plugin \ | ||
mkdocs-monorepo-plugin \ | ||
mkdocs-mermaid2-plugin \ | ||
mkdocs-markmap \ | ||
mkdocs-multirepo-plugin \ | ||
mkdocs_pymdownx_material_extras \ | ||
mkdocs-safe-text-plugin \ | ||
mkdocs-simple-hooks \ | ||
mkdocs-render-swagger-plugin \ | ||
mkdocs-redirects \ | ||
mkdocs-versioning \ | ||
mkdocstrings \ | ||
\ | ||
mkdocs-alabaster \ | ||
mkdocs-cinder \ | ||
mkdocs-ivory \ | ||
mkdocs-kpn \ | ||
mkdocs-material \ | ||
mkdocs-rtd-dropdown \ | ||
\ | ||
markdown-include \ | ||
pygments \ | ||
pymdown-extensions \ | ||
&& clean | ||
|
||
COPY rootfs / | ||
|
||
CMD [ "mkdocs", "serve", "--dev-addr", "0.0.0.0:8000" ] | ||
|
||
FROM minidocks/python:3-build AS build | ||
|
||
RUN apk add libsass-dev \ | ||
&& pip3 wheel --wheel-dir=/tmp libsass | ||
|
||
FROM latest AS pdf | ||
|
||
COPY --from=build /tmp/libsass* /tmp | ||
|
||
RUN apk add libsass && pip install \ | ||
/tmp/libsass* \ | ||
mkdocs-pdf-export-plugin \ | ||
mkdocs-with-pdf \ | ||
mkpdfs-mkdocs \ | ||
&& clean | ||
|
||
RUN wget -O /tmp/roboto.zip https://fonts.google.com/download?family=Roboto \ | ||
&& unzip /tmp/roboto.zip -d /usr/share/fonts/truetype \ | ||
&& fc-cache -f \ | ||
&& clean | ||
|
||
FROM latest |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.