Skip to content

Commit 9b36a37

Browse files
fixes
1 parent 952482b commit 9b36a37

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitpod.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ tasks:
66
rm Dockerfile
77
echo -e "# Snakemake-Tutorial\n\nYour gitpod workspace for the snakemake-tutorial has been initialized. Now you can start with the [basic tutorial](https://snakemake.readthedocs.io/en/stable/tutorial/basics.html)." > README.md
88
echo "PS1='\w\$ '" >> ~/.bashrc
9-
source ~/.bashrc
109
echo "*" > .gitignore
11-
conda activate snakemake-tutorial
10+
conda init
11+
source ~/.bashrc
1212
clear
13+
conda activate snakemake-tutorial
1314
1415
vscode:
1516
extensions:

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
FROM snakemake/snakemake:stable
22
ADD environment.yaml .
3-
RUN grep -v snakemake-minimal environment.yaml > /tmp/environment.yaml; mamba env update -n snakemake -f /tmp/environment.yaml
3+
RUN mamba create -n snakemake-tutorial --clone snakemake; \
4+
mamba env update -n snakemake-tutorial -f environment.yaml;
45
RUN mkdir -p /tmp/conda
56
ENV CONDA_PKGS_DIRS /tmp/conda

0 commit comments

Comments
 (0)