agb/Dockerfile

14 lines
375 B
Docker
Raw Normal View History

2021-03-07 09:52:29 +11:00
FROM devkitpro/devkitarm:20190212
RUN apt-get update && \
apt-get install -y build-essential && \
apt-get clean
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly
RUN . "$HOME/.cargo/env" && \
cargo install cargo-xbuild && \
rustup component add rust-src
RUN echo 'export PATH=$PATH:$DEVKITARM/bin' >> $HOME/.bashrc
CMD /bin/bash