File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change 1
- # Use a standard Python image as the base
2
- FROM python:3.12.2-slim
1
+ FROM continuumio/miniconda3
3
2
4
- # Install git
5
- RUN apt-get update && \
6
- apt-get install -y git && \
7
- rm -rf /var/lib/apt/lists/*
3
+ COPY environment.yml .
4
+ RUN apt-get update -qq && apt-get install -y \
5
+ build-essential
8
6
9
- # Now, git is available, so we can install packages directly from Git repositories
10
- RUN pip install omnipath==1.0.7 pandas==2.0.3
11
- RUN pip install --upgrade git+https://github.com/saezlab/decoupler-py
7
+ RUN conda env create -f environment.yml
8
+ ENV PATH="/opt/conda/envs/backsub/bin:$PATH"
12
9
13
- # Assuming decoupler and other packages are now installed, continue with your setup...
10
+ RUN pip install --upgrade git+https://github.com/saezlab/decoupler-py
14
11
You can’t perform that action at this time.
0 commit comments