annotate Dockerfile @ 268:356e7f4c70a2
impl check not found header
author |
anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp> |
date |
Thu, 06 Feb 2020 16:04:16 +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
|