annotate Dockerfile @ 242:26be78edaf83
impl auto collection for data gears from interface
author |
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp> |
date |
Mon, 03 Feb 2020 17:12:35 +0900 |
parents |
f8ce1013b84d |
children |
|
rev |
line source |
1
|
1 FROM phitek/qemu-arm
|
|
2 RUN apt-get update -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
|
5
|
5 WORKDIR /src
|
1
|
6 RUN hg clone http://www.cr.ie.u-ryukyu.ac.jp/hg/Members/innparusu/xv6-rpi/
|
5
|
7 WORKDIR /src/xv6-rpi/src
|
1
|
8 RUN make
|
|
9 CMD /bin/bash
|