Skip to content

Commit

Permalink
Docker: Add workaround for rustup (#15)
Browse files Browse the repository at this point in the history
From rust-lang/rustup#679.
This seems to address the segfault we're seeing.
  • Loading branch information
passy authored and daithiocrualaoich committed Aug 27, 2016
1 parent 862411c commit 7af6f4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ RUN pip install cloud_sptheme

RUN apt-get install -qq curl graphviz

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
RUN curl https://sh.rustup.rs -sSf | env RUSTUP_INIT_SKIP_SUDO_CHECK=1 sh -s -- -y
ENV CARGO_TARGET_DIR targetdocker
ENV PATH /root/.cargo/bin:$PATH

Expand Down

0 comments on commit 7af6f4d

Please sign in to comment.