We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 583024b commit 8e7a868Copy full SHA for 8e7a868
1 file changed
.devcontainer/Dockerfile
@@ -1,4 +1,5 @@
1
FROM antora/antora
2
+ARG MRDOCS_VERSION=0.8.0
3
4
5
RUN apk add --no-cache \
@@ -21,5 +22,13 @@ RUN pip install watchdog
21
22
23
RUN yarn global add @antora/lunr-extension
24
25
+RUN apk add --no-cache curl tar xz \
26
+ && curl -L https://github.com/cppalliance/mrdocs/releases/download/v${MRDOCS_VERSION}/MrDocs-${MRDOCS_VERSION}-Linux.tar.xz \
27
+ -o /tmp/mrdocs.tar.xz \
28
+ && mkdir -p /opt/mrdocs \
29
+ && tar -xJf /tmp/mrdocs.tar.xz -C /opt/mrdocs --strip-components=1 \
30
+ && rm /tmp/mrdocs.tar.xz \
31
+ && ln -s /opt/mrdocs/bin/mrdocs /usr/local/bin/mrdocs
32
+
33
USER node
34
0 commit comments