16 lines
423 B
Docker
16 lines
423 B
Docker
FROM swift:latest
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true \
|
|
&& apt-get -q update \
|
|
&& apt-get -q dist-upgrade -y \
|
|
&& apt-get install -y \
|
|
cmake \
|
|
rustup \
|
|
tmux
|
|
|
|
RUN userdel --remove ubuntu && \
|
|
rustup default stable && \
|
|
cargo install --git https://github.com/MordechaiHadad/bob.git && \
|
|
/root/.cargo/bin/bob install nightly && \
|
|
/root/.cargo/bin/bob use nightly
|