view Dockerfile @ 27:da1d64f7b225 default tip

fix
author kono
date Thu, 07 Jul 2022 17:47:52 +0900
parents 7d90b5bc0f75
children
line wrap: on
line source

FROM arm32v7/debian:stretch-slim
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
RUN apt-get install make -y
RUN apt-get install gcc -y
WORKDIR /code
COPY ["src", "."]
RUN make
CMD /bin/bash