Skip to content

Commit

Permalink
Merge pull request #2345 from MatthiasZepper/AddApptainerGitpod
Browse files Browse the repository at this point in the history
Add Apptainer (Singularity) to Gitpod nf-core base image
  • Loading branch information
ewels authored Jun 29, 2023
2 parents e22a4f7 + ac6777a commit df428cb
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nf_core/gitpod/gitpod.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ FROM gitpod/workspace-base
USER root

# Install util tools.
# software-properties-common is needed to add ppa support for Apptainer installation
RUN apt-get update --quiet && \
apt-get install --quiet --yes \
apt-transport-https \
Expand All @@ -13,7 +14,13 @@ RUN apt-get update --quiet && \
wget \
curl \
tree \
graphviz
graphviz \
software-properties-common

# Install Apptainer (Singularity)
RUN add-apt-repository -y ppa:apptainer/ppa && \
apt-get update --quiet && \
apt install -y apptainer

# Install Conda
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh && \
Expand Down

0 comments on commit df428cb

Please sign in to comment.