docker: reorder COPY with best guess of what changes least

This commit is contained in:
Sebastian Di Luzio 2025-04-17 18:58:50 +02:00
parent dbc3f17427
commit e98222aef5

View file

@ -17,10 +17,10 @@ RUN apt-get update && apt-get install -y\
qt6-tools-dev-tools qt6-tools-dev-tools
COPY ./CMakeLists.txt ./LICENSE ./README.md /home/servatrice/code/ 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 ./cmake /home/servatrice/code/cmake
COPY ./common /home/servatrice/code/common
COPY ./dbconverter /home/servatrice/code/dbconverter COPY ./dbconverter /home/servatrice/code/dbconverter
COPY ./servatrice /home/servatrice/code/servatrice
WORKDIR /home/servatrice/code WORKDIR /home/servatrice/code