From e98222aef53b57aa99192df2c1d9fc87eaec4deb Mon Sep 17 00:00:00 2001 From: Sebastian Di Luzio Date: Thu, 17 Apr 2025 18:58:50 +0200 Subject: [PATCH] docker: reorder COPY with best guess of what changes least --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 454531545..a0826a0d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,10 +17,10 @@ RUN apt-get update && apt-get install -y\ qt6-tools-dev-tools COPY ./CMakeLists.txt ./LICENSE ./README.md /home/servatrice/code/ -COPY ./common /home/servatrice/code/common -COPY ./servatrice /home/servatrice/code/servatrice COPY ./cmake /home/servatrice/code/cmake +COPY ./common /home/servatrice/code/common COPY ./dbconverter /home/servatrice/code/dbconverter +COPY ./servatrice /home/servatrice/code/servatrice WORKDIR /home/servatrice/code