From d6d99ff6b8bace26b857920e099af023b20d19a8 Mon Sep 17 00:00:00 2001 From: Nathan Miller Date: Wed, 18 Oct 2023 19:23:19 -0700 Subject: [PATCH] fix copy commands --- Dockerfile_OdbDesignServer | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile_OdbDesignServer b/Dockerfile_OdbDesignServer index 2cd54b23..f881cf13 100644 --- a/Dockerfile_OdbDesignServer +++ b/Dockerfile_OdbDesignServer @@ -53,13 +53,14 @@ RUN mkdir --parents /OdbDesign/bin WORKDIR /OdbDesign/bin # copy binaries -COPY --from=build /src/OdbDesign/out/build/linux-release/OdbDesignLib/libOdbDesign.so . -COPY --from=build /src/OdbDesign/out/build/linux-release/Utils/libUtils.so . +COPY --from=build /src/OdbDesign/out/build/linux-release/OdbDesignLib/*.so . +COPY --from=build /src/OdbDesign/out/build/linux-release/Utils/*.so . COPY --from=build /src/OdbDesign/out/build/linux-release/OdbDesignServer/OdbDesignServer . +COPY --from=build /src/OdbDesign/out/build/linux-release/OdbDesignServer/*.so . COPY --from=build /src/OdbDesign/out/build/linux-release/*.so . # copy designs and templates directories -COPY --from=build /src/OdbDesign/OdbDesignServer/designs ./designs -COPY --from=build /src/OdbDesign/OdbDesignServer/templates ./templates +#COPY --from=build /src/OdbDesign/OdbDesignServer/designs ./designs +#COPY --from=build /src/OdbDesign/OdbDesignServer/templates ./templates # run ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/OdbDesign/bin