Add docker file

This commit is contained in:
2025-01-08 08:41:41 -06:00
parent 5cd54469de
commit 23bf0d94e9
14 changed files with 226 additions and 44 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
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