arm-gcc-ci/Dockerfile

11 lines
138 B
Docker
Raw Normal View History

2023-09-13 14:35:30 +03:00
FROM node:16-bullseye
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