mirror of
https://git.tesses.org/tesses50/tessesframework.git
synced 2026-06-01 18:15:31 +00:00
5 lines
174 B
Docker
5 lines
174 B
Docker
FROM ubuntu:noble
|
|
|
|
RUN apt update && apt install -y cmake g++ gcc libmbedtls-dev build-essential
|
|
|
|
RUN mkdir build && cd build && cmake -S .. -B . && make -j12 && make install |