mirror of
https://github.com/italicsjenga/agb.git
synced 2024-12-23 16:21:33 +11:00
13 lines
349 B
Docker
13 lines
349 B
Docker
FROM docker.io/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" && \
|
|
rustup component add rust-src
|
|
|
|
RUN echo 'export PATH=$PATH:$DEVKITARM/bin' >> $HOME/.bashrc
|
|
|
|
CMD /bin/bash |