From fb510250526fc35ab265e8273949a2c51ba52359 Mon Sep 17 00:00:00 2001 From: Lachlan Grose Date: Fri, 8 Nov 2024 11:29:57 +1100 Subject: [PATCH] fix: change docs build to combine all dependencies in one file --- docs/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/Dockerfile b/docs/Dockerfile index edd0bd90..2cc8b312 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -20,9 +20,11 @@ COPY . /map2loop WORKDIR /map2loop COPY dependencies.txt dependencies.txt +COPY dependencies.txt dependenciesdocs.txt + +RUN cat ./docs/requirements.txt >> dependenciesdocs.txt RUN conda install -c conda-forge -c loop3d --file dependencies.txt -y -RUN conda install -c conda-forge -c loop3d --file ./docs/requirements.txt -y RUN pip install . -WORKDIR / \ No newline at end of file +WORKDIR /