view Dockerfile @ 11:0157781eb6c2 default tip

add entry point
author mir3636
date Tue, 25 Dec 2018 19:06:09 +0900
parents d56c48888d7f
children
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 mercurial -y
WORKDIR /code
RUN hg clone http://www.cr.ie.u-ryukyu.ac.jp/hg/Members/innparusu/xv6_rpi_port/
WORKDIR /code/xv6_rpi_port/
RUN make
CMD /bin/bash