Add docker file

This commit is contained in:
2025-01-08 08:56:58 -06:00
parent 12983e8d8c
commit 0e8a383782

View File

@ -1,5 +1,5 @@
FROM ubuntu:noble FROM ubuntu:noble
RUN apt update && apt install -y cmake g++ gcc libmbedtls-dev build-essential RUN apt update && apt install -y cmake g++ gcc libmbedtls-dev build-essential git ca-certificates
RUN ls && mkdir build && cd build && cmake -S .. -B . && make -j12 && make install RUN mkdir /src && git clone https://onedev.site.tesses.net/TessesFramework . && mkdir build && cd build && cmake -S .. -B . && make -j12 && make install && cd / && rm -r /src