view Dockerfile @ 3:0bb1d3d292b9

Fix CFLAGS
author Tatsuki IHA <innparusu@cr.ie.u-ryukyu.ac.jp>
date Sun, 22 Oct 2017 18:38:31 +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