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