-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #83 from mwang87/splash
SPLASH integration
- Loading branch information
Showing
11 changed files
with
192 additions
and
75 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
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 |
---|---|---|
|
@@ -2,22 +2,14 @@ FROM continuumio/miniconda3:4.8.2 | |
MAINTAINER Mingxun Wang "[email protected]" | ||
|
||
WORKDIR /app | ||
RUN apt-get update -y | ||
RUN conda create -n usi -c rdkit rdkit=2019.09.3.0 | ||
RUN /bin/bash -c "source activate usi" | ||
RUN apt-get update -y && \ | ||
apt-get install -y libxrender-dev && \ | ||
apt-get install -y git-core | ||
RUN conda create -y -n usi -c conda-forge -c bioconda -c defaults flask \ | ||
gunicorn matplotlib numba numpy openssl qrcode rdkit requests \ | ||
requests-cache scipy spectrum_utils werkzeug | ||
RUN /bin/bash -c 'source activate usi && pip install "git+git://github.com/berlinguyinca/spectra-hash.git#egg=splash&subdirectory=python"' | ||
RUN echo "source activate usi" > ~/.bashrc | ||
RUN conda install -n usi -c anaconda flask | ||
RUN conda install -n usi -c anaconda gunicorn | ||
RUN conda install -n usi -c anaconda requests | ||
RUN conda install -n usi -c bioconda spectrum_utils | ||
RUN conda install -n usi -c conda-forge xmltodict | ||
RUN conda install -n usi -c conda-forge qrcode | ||
RUN conda install -n usi -c conda-forge requests-cache | ||
RUN conda install -n usi -c anaconda scipy | ||
|
||
RUN apt-get install -y libxrender-dev | ||
|
||
RUN conda update -n usi -c anaconda openssl | ||
|
||
COPY . /app | ||
WORKDIR /app |
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
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
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
Oops, something went wrong.