comparison Dockerfile @ 52:1adde248a61f default tip

merge
author anatofuz <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Fri, 07 Jun 2019 17:30:15 +0900
parents f8ce1013b84d ccd59cd9ee45
children
comparison
equal deleted inserted replaced
49:c05774dbd65f 52:1adde248a61f
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 /src 5 WORKDIR /code
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/anatofuz/xv6-rpi-docker
7 WORKDIR /src/xv6-rpi/src 7 WORKDIR /code/xv6-rpi-docker/src
8 RUN make 8 RUN make
9 CMD /bin/bash 9 CMD /bin/bash