view Dockerfile @ 7:5f1fe02b09e9

add docker-compose
author anatofuz
date Mon, 16 Dec 2019 19:47:01 +0900
parents 0428573d4327
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 -y
WORKDIR /src
COPY ["src", "."]
RUN make
CMD /bin/bash