Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
gabora authored Mar 18, 2024
1 parent 3714571 commit f394200
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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...

0 comments on commit f394200

Please sign in to comment.