-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: docker and conda with bugfix in createref
- Loading branch information
1 parent
0f198c2
commit a22d8b5
Showing
5 changed files
with
49 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM continuumio/miniconda | ||
ARG app_version | ||
|
||
MAINTAINER Andrew McPherson <[email protected]> | ||
|
||
USER root | ||
RUN conda config --add channels https://conda.anaconda.org/dranew && conda config --add channels https://conda.anaconda.org/shahcompbio && conda config --add channels bioconda | ||
RUN conda install defuse==$app_version | ||
RUN conda install openssl=1.0 | ||
RUN mkdir -p /root/.config/matplotlib | ||
RUN echo "backend : Agg" > /root/.config/matplotlib/matplotlibrc | ||
|
||
ENV NAME defuse | ||
|
||
ENTRYPOINT ["bash"] | ||
|
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,11 @@ | ||
|
||
yum install gcc-c++ git -y | ||
conda config --set always_yes true | ||
conda config --set anaconda_upload yes | ||
conda config --add channels https://conda.anaconda.org/dranew | ||
conda config --add channels https://conda.anaconda.org/shahcompbio | ||
conda config --add channels 'bioconda' | ||
conda install conda-build anaconda-client | ||
anaconda login --username dranew | ||
conda build conda/defuse | ||
|
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 @@ | ||
docker run -v ${PWD}:/repo -w /repo -it conda/miniconda2-centos6 bash -e build_conda.sh |
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