From c2c241fbbf5c7e4c75a5098f998120d321af81e2 Mon Sep 17 00:00:00 2001 From: Christian Steinle Date: Mon, 14 Apr 2025 08:44:08 +0200 Subject: [PATCH] Deal with git and not empty directories. --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4c1dffa..3f3b1d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,9 @@ RUN git clone https://github.com/rscada/libmbus.git --depth 1 \ && ./build.sh \ && make install -RUN git clone https://github.com/volkszaehler/vzlogger . --depth 1 +RUN git clone https://github.com/volkszaehler/vzlogger /logger --depth 1 + +RUN cp /logger/* . ARG build_test=off RUN cmake -DBUILD_TEST=${build_test} \