From f3942003648ff4fb015b01f13c48b3f9b5b72f0d Mon Sep 17 00:00:00 2001 From: Attila Gabor Date: Mon, 18 Mar 2024 14:36:09 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 18fbe13..77c38a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,14 @@ -FROM quay.io/biocontainers/decoupler:1.5.0--pyhdfd78af_0 +# Use a standard Python image as the base +FROM python:3.12.2-slim -# Install Python packages directly, skipping the apt/git installation +# Install git +RUN apt-get update && \ + apt-get install -y git && \ + rm -rf /var/lib/apt/lists/* + +# Now, git is available, so we can install packages directly from Git repositories RUN pip install omnipath==1.0.7 pandas==2.0.3 RUN pip install --upgrade git+https://github.com/saezlab/decoupler-py + +# Assuming decoupler and other packages are now installed, continue with your setup... +