Skip to content

Commit

Permalink
does this work? (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
zktuong committed Jan 9, 2024
1 parent 310cbe8 commit 97dc56a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
7 changes: 6 additions & 1 deletion container/sc-dandelion.def
Expand Up @@ -2,7 +2,12 @@ Bootstrap: docker

From: ubuntu:latest

%files
%setup
if [! /share ]; then
mkdir -p /share;
fi

%files
environment.yml /environment.yml
scripts/setup_mamba.sh /share/setup_mamba.sh
scripts/dandelion_preprocess.py /share/dandelion_preprocess.py
Expand Down
7 changes: 6 additions & 1 deletion container/sc-dandelion_remote.def
@@ -1,7 +1,12 @@
Bootstrap: docker

From: ubuntu:latest


%setup
if [! /share ]; then
mkdir -p /share;
fi

%files
dandelion/container/environment.yml /environment.yml
dandelion/container/scripts/setup_mamba.sh /share/setup_mamba.sh
Expand Down
5 changes: 5 additions & 0 deletions container/sc-dandelion_test.def
Expand Up @@ -2,6 +2,11 @@ Bootstrap: docker

From: ubuntu:latest

%setup
if [! /share ]; then
mkdir -p /share;
fi

%files
environment_test.yml /environment.yml
scripts/setup_mamba.sh /share/setup_mamba.sh
Expand Down

0 comments on commit 97dc56a

Please sign in to comment.