From c1b06e1572356bfc6d4fb62d2adcd29c1758377e Mon Sep 17 00:00:00 2001 From: Sergei Pond Date: Tue, 7 Jan 2025 11:39:25 -0500 Subject: [PATCH] Update Dockerfile Build multi-threaded and copy test files. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cb3a79659..029ca04ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,10 +16,11 @@ COPY ./src /hyphy/src COPY ./contrib /hyphy/contrib COPY ./res /hyphy/res COPY CMakeLists.txt /hyphy +COPY ./tests /hyphy/tests RUN chown -R hyphyuser:hyphyuser . # Install project -RUN cmake . && make install +RUN cmake . && make -j install USER hyphyuser