arm-gcc-ci/Image.Dockerfile

15 lines
230 B
Docker
Raw Normal View History

2023-09-14 09:59:45 +03:00
FROM debian:stable-slim
2023-09-12 22:53:40 +03:00
2023-09-13 13:16:42 +03:00
RUN apt-get update && \
apt-get install \
2023-09-14 09:59:45 +03:00
--no-install-recommends \
2023-09-12 22:53:40 +03:00
gcc-arm-none-eabi \
2023-09-14 09:59:45 +03:00
libstdc++-arm-none-eabi-newlib \
make \
cmake \
2023-09-13 13:16:42 +03:00
-y && \
rm -rf /var/cache/apt
2023-09-12 22:53:40 +03:00