view Dockerfile @ 5:0428573d4327

use_local_files
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Tue, 18 Jun 2019 18:59:33 +0900
parents ccd59cd9ee45
children 7d90b5bc0f75
line wrap: on
line source

FROM phitek/qemu-arm
RUN apt-get update -y
RUN apt-get remove gdb -y
RUN apt-get install gcc-arm-none-eabi gdb-arm-none-eabi qemu-system-arm -y
WORKDIR /code
COPY ["src", "."]
RUN make
CMD /bin/bash