mirror of
https://github.com/embedd-actions/arm-gcc-ci.git
synced 2024-12-26 00:42:22 +03:00
11 lines
138 B
Docker
11 lines
138 B
Docker
|
FROM node:16-bullseye
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get install \
|
||
|
gcc-arm-none-eabi \
|
||
|
-y && \
|
||
|
rm -rf /var/cache/apt
|
||
|
|
||
|
|
||
|
|