remove dockerfile

This commit is contained in:
Corwin Kuiper 2021-04-16 00:55:02 +01:00
parent 0c5b1d3e56
commit d56fcfccee
2 changed files with 0 additions and 15 deletions

View file

@ -1,11 +0,0 @@
FROM docker.io/ubuntu:latest
RUN apt-get update && \
apt-get install -y build-essential binutils-arm-none-eabi curl && \
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

View file

@ -1,4 +0,0 @@
#!/bin/bash
docker build . -t rustgba-dev
docker run --rm --volume $PWD:/build -it --workdir "/build" rustgba-dev