mirror of
https://github.com/embedd-actions/arm-gcc-ci.git
synced 2024-12-25 16:32:14 +03:00
14 lines
143 B
Docker
14 lines
143 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update \
|
|
&& \
|
|
apk add \
|
|
gcc-arm-none-eabi \
|
|
make \
|
|
cmake \
|
|
&& \
|
|
apk cache clean
|
|
|
|
|
|
|