如何在Docker容器中使用Cargo安装mdbook?

时间:2018-10-30 20:54:38

标签: docker rust rust-cargo

我正在尝试构建一个包含Rust和mdbook的Docker容器。我在上尝试了多种变体

FROM rust:latest
RUN cargo install mdbook

,包括指定确切的版本。例如,这些都不起作用

RUN cargo install --git https://github.com/rust-lang-nursery/mdBook.git mdbook

RUN cargo install mdbook --vers "^0.1.0"

当安装开始编译lazycell v1.2.0时,事情失败:

Compiling lazycell v1.2.0
error: `<core::cell::UnsafeCell<T>>::new` is not yet stable as a const fn
   --> /usr/local/cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.2.0/src/lib.rs:233:16
    |
233 |         inner: UnsafeCell::new(None),
    |                ^^^^^^^^^^^^^^^^^^^^^
    |
    = help: in Nightly builds, add `#![feature(const_unsafe_cell_new)]` to the crate attributes to enable

1 个答案:

答案 0 :(得分:0)

您可以构建自己的容器,而不是使用Docker的Rust容器。 Rust的版本仍然是1.30(与FROM rust:latest一样),但是由于某种原因,此过程可以正确获取所有依赖项。

FROM ubuntu:latest
FROM gcc:latest

RUN apt-get update && \
    apt-get install -y curl

WORKDIR /tmp

RUN curl https://sh.rustup.rs -sSf > rustup.sh
RUN chmod 755 rustup.sh
RUN ./rustup.sh -y
RUN rm /tmp/rustup.sh

RUN ~/.cargo/bin/cargo install mdbook