Skip to content

Commit

Permalink
Switched to libmamba environment solver
Browse files Browse the repository at this point in the history
  • Loading branch information
kvg committed Oct 30, 2023
1 parent a9a1920 commit 8a07fe2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker/pggb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ MAINTAINER William T Harvey

COPY ./environment.yml /

RUN conda update -n base conda && \
conda install -n base conda-libmamba-solver && \
conda config --set solver libmamba

RUN conda env create -f /environment.yml && conda clean -a

ENV LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/opt/conda/envs/pggb/lib/

ENV PATH=/opt/conda/envs/pggb/bin/:${PATH}

RUN echo "source activate pggb" > ~/.bashrc
RUN echo "source activate pggb" > ~/.bashrc

0 comments on commit 8a07fe2

Please sign in to comment.