view Dockerfile @ 50:0b3fb7075f38

fix_dockerfile
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Mon, 17 Dec 2018 18:29:50 +0900
parents cc14476ac479
children ccd59cd9ee45
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/anatofuz/xv6-docker
WORKDIR /code/xv6-rpi/src
RUN make
CMD /bin/bash