Skip to content

Commit

Permalink
Merge pull request #3008 from felder/felder_biology_2934
Browse files Browse the repository at this point in the history
Moving requirements.txt to environment.yml for biology issue #2934
  • Loading branch information
felder authored Nov 17, 2021
2 parents 5236bbe + faeb031 commit 4a99ccb
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 14 deletions.
5 changes: 2 additions & 3 deletions deployments/biology/image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM buildpack-deps:focal-scm

ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/Etc/$TZ /etc/localtime && echo $TZ > /etc/timezone
ENV TZ=America/Los_Angeles
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
Expand Down Expand Up @@ -172,7 +172,6 @@ RUN apt-get update -qq --yes && \
USER ${NB_USER}

COPY environment.yml /tmp/
COPY requirements.txt /tmp/
COPY infra-requirements.txt /tmp/

RUN mamba env update -p ${CONDA_DIR} -f /tmp/environment.yml
Expand Down
12 changes: 11 additions & 1 deletion deployments/biology/image/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,15 @@ dependencies:
- raxml=8.2.*
- muscle=3.8.*
- dendropy=4.4.*

# pedagogy packages
- scipy==1.7.1
- pandas==1.3.2
- seaborn==0.11.2

# For https://github.com/berkeley-dsep-infra/datahub/issues/1846
# Conda does not have these
- pip:
- -r requirements.txt
- geonomics==1.1.9
- nlmpy==1.0.1
- -r infra-requirements.txt
10 changes: 0 additions & 10 deletions deployments/biology/image/requirements.txt

This file was deleted.

0 comments on commit 4a99ccb

Please sign in to comment.