Skip to content

Commit

Permalink
fix: ensure python3 is used for pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Oct 24, 2024
1 parent 634b7e5 commit 9b82b59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/ccbr_ubuntu_base_20.04/Dockerfile.v7
Original file line number Diff line number Diff line change
@@ -99,12 +99,12 @@ RUN conda upgrade conda
# RUN mamba env create -n ${CONDA_ENV} -f /data2/environment.yml && \
# echo "conda activate ${CONDA_ENV}" > ~/.bashrc
# ENV PATH="/opt2/conda/envs/${CONDA_ENV}/bin:$PATH"
# ENV PYTHONPATH=""

ENV PYTHONPATH=""
# Fix python
RUN ln -s /opt2/conda/bin/python3 /usr/bin/python \
&& ln -s /usr/bin/python2.7 /usr/bin/python2
RUN pip install --upgrade pip \
RUN python3 -m pip install --upgrade pip \
argparse \
biopython \
numpy \

0 comments on commit 9b82b59

Please sign in to comment.