| 12345678910111213141516171819202122232425262728293031 | FROM lganzzzo/ubuntu-cmake-mimalloc#---------------------------------------------------------------# install oatppWORKDIR /testRUN git clone https://github.com/oatpp/oatppWORKDIR /test/oatppRUN git checkout 4cd37af26ffa55231f11649106a1bb33a3244cd1WORKDIR /test/oatpp/buildRUN cmake -DOATPP_DISABLE_ENV_OBJECT_COUNTERS=ON -DCMAKE_BUILD_TYPE=Release -DOATPP_BUILD_TESTS=OFF ..RUN make install#---------------------------------------------------------------# build test appADD src-async /test/src-asyncWORKDIR /test/src-async/buildRUN cmake -DCMAKE_BUILD_TYPE=Release ..RUN makeEXPOSE 8000CMD ./oatpp-async-test
 |