comparison Dockerfile @ 5:f8ce1013b84d

kvm xml files
author tobaru
date Thu, 25 Jan 2018 19:33:40 +0900
parents cc14476ac479
children 1adde248a61f
comparison
equal deleted inserted replaced
4:e4f49859477e 5:f8ce1013b84d
1 FROM phitek/qemu-arm 1 FROM phitek/qemu-arm
2 RUN apt-get update -y 2 RUN apt-get update -y
3 RUN apt-get remove gdb -y 3 RUN apt-get remove gdb -y
4 RUN apt-get install gcc-arm-none-eabi gdb-arm-none-eabi qemu-system-arm mercurial -y 4 RUN apt-get install gcc-arm-none-eabi gdb-arm-none-eabi qemu-system-arm mercurial -y
5 WORKDIR /code 5 WORKDIR /src
6 RUN hg clone http://www.cr.ie.u-ryukyu.ac.jp/hg/Members/innparusu/xv6-rpi/ 6 RUN hg clone http://www.cr.ie.u-ryukyu.ac.jp/hg/Members/innparusu/xv6-rpi/
7 WORKDIR /code/xv6-rpi/src 7 WORKDIR /src/xv6-rpi/src
8 RUN make 8 RUN make
9 CMD /bin/bash 9 CMD /bin/bash