9 lines
144 B
Docker
9 lines
144 B
Docker
FROM ubuntu:22.04
|
|
|
|
RUN apt -y update
|
|
RUN apt -y install build-essential gcc-arm-none-eabi doxygen cmake python3
|
|
RUN mkdir /data
|
|
|
|
WORKDIR /data
|
|
|