agb/Dockerfile

11 lines
300 B
Docker
Raw Normal View History

FROM docker.io/ubuntu:latest
2021-03-07 09:52:29 +11:00
RUN apt-get update && \
apt-get install -y build-essential binutils-arm-none-eabi curl && \
2021-03-07 09:52:29 +11:00
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
CMD /bin/bash