We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f394200 commit f734acdCopy full SHA for f734acd
Dockerfile
@@ -1,14 +1,11 @@
1
-# Use a standard Python image as the base
2
-FROM python:3.12.2-slim
+FROM continuumio/miniconda3
3
4
-# Install git
5
-RUN apt-get update && \
6
- apt-get install -y git && \
7
- rm -rf /var/lib/apt/lists/*
+COPY environment.yml .
+RUN apt-get update -qq && apt-get install -y \
+ build-essential
8
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
+RUN conda env create -f environment.yml
+ENV PATH="/opt/conda/envs/backsub/bin:$PATH"
12
13
-# Assuming decoupler and other packages are now installed, continue with your setup...
+RUN pip install --upgrade git+https://github.com/saezlab/decoupler-py
14
0 commit comments