arm-gcc-ci/Dockerfile

11 lines
140 B
Docker
Raw Normal View History

2023-09-13 13:16:42 +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-12 22:53:40 +03:00
gcc-arm-none-eabi \
2023-09-13 13:16:42 +03:00
-y && \
rm -rf /var/cache/apt
2023-09-12 22:53:40 +03:00