From 20536abafd587f1630664827e18990c9b7d8d478 Mon Sep 17 00:00:00 2001 From: Martin Valgur Date: Fri, 23 Feb 2024 14:48:34 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 97c0fc39..715eb646 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,10 +31,10 @@ RUN cd src/python \ ENV PYTHONPATH $PYTHONPATH:/usr/lib/python3.8/site-packages +RUN conan profile detect COPY conanfile.py conanfile.py -RUN mkdir build \ - && cd build \ - && conan install .. -of . -c tools.system.package_manager:mode=install +COPY third_party/conan-recipes third_party/conan-recipes +RUN conan install . --build missing -s compiler.cppstd=17 -c tools.system.package_manager:mode=install COPY . . RUN cd build \