We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 142cae9 commit b33a48cCopy full SHA for b33a48c
1 file changed
.devcontainer/Dockerfile
@@ -82,9 +82,9 @@ RUN echo '\n# Force UTF-8 mode for tmux\nalias tmux="tmux -u"' >> /home/vscode/.
82
83
# Install mdbook (static site generator for documentation)
84
USER root
85
-RUN MDBOOK_VERSION=v0.4.44 \
+RUN MDBOOK_VERSION=v0.5.2 \
86
&& ARCH="$(uname -m)" \
87
- && if [ "$ARCH" = "aarch64" ]; then ARCH="aarch64-unknown-linux-gnu"; \
+ && if [ "$ARCH" = "aarch64" ]; then ARCH="aarch64-unknown-linux-musl"; \
88
else ARCH="x86_64-unknown-linux-gnu"; fi \
89
&& wget -qO- "https://github.com/rust-lang/mdBook/releases/download/${MDBOOK_VERSION}/mdbook-${MDBOOK_VERSION}-${ARCH}.tar.gz" \
90
| tar -xz -C /usr/local/bin
0 commit comments