-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM continuumio/miniconda3 | ||
LABEL authors="Katherine Eaton" \ | ||
description="Docker image containing dependencies for ktmeaton/plague-phylogeography: sra." | ||
COPY plot.yaml / | ||
|
||
# install mamba and create environment | ||
RUN conda install -c conda-forge mamba; \ | ||
mamba env create -f /sra.yaml; | ||
|
||
# Cleanup conda to reduce image size | ||
RUN conda clean -a; | ||
|
||
# Activate conda environment on login | ||
RUN echo "source activate plague-phylogeography-sra" > ~/.bashrc; | ||
|
||
ENV BASH_ENV ~/.bashrc | ||
SHELL ["/bin/bash", "-c"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
name: plague-phylogeography-sra | ||
channels: | ||
- bioconda | ||
- conda-forge | ||
|