mirror of
https://github.com/embedd-actions/arm-gcc-ci.git
synced 2024-12-25 16:32:14 +03:00
11 lines
140 B
Docker
11 lines
140 B
Docker
FROM debian:stable-slim
|
|
|
|
RUN apt-get update && \
|
|
apt-get install \
|
|
gcc-arm-none-eabi \
|
|
-y && \
|
|
rm -rf /var/cache/apt
|
|
|
|
|
|
|