mirror of
https://github.com/italicsjenga/agb.git
synced 2025-01-09 08:31:33 +11:00
Dockerfile for doing development
This commit is contained in:
parent
e28e567535
commit
943caac685
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
|||
*
|
14
Dockerfile
Normal file
14
Dockerfile
Normal file
|
@ -0,0 +1,14 @@
|
|||
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
|
Loading…
Reference in a new issue