view Dockerfile @ 8:2abf8d4d046f default tip

def container name
author anatofuz
date Mon, 16 Dec 2019 19:52:00 +0900
parents 5f1fe02b09e9
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