-
Notifications
You must be signed in to change notification settings - Fork 7
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 #2 from ResearchIT/master
Changes needed for server rollout
- Loading branch information
Showing
6 changed files
with
147 additions
and
65 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 @@ | ||
*.pyc |
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,21 @@ | ||
FROM centos:7 | ||
|
||
# System dependencies | ||
RUN yum -y install git which python-virtualenv gcc gcc-c++ | ||
|
||
# SSH deployment key | ||
RUN mkdir ~/.ssh | ||
COPY ppackman-key ~/.ssh/ | ||
RUN chmod 400 ~/.ssh/ppackman-key | ||
|
||
# Setup virtualenv | ||
RUN virtualenv ppackman-env | ||
RUN source ppackman-env/bin/activate | ||
|
||
# Clone the source | ||
RUN git clone git@github.com:ResearchIT/PPACKMAN.git | ||
|
||
# Install python requirements | ||
WORKDIR PPACKMAN | ||
RUN pip install -r requirements.txt | ||
|
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
astroid==1.6.6 | ||
backports.functools-lru-cache==1.5 | ||
configparser==3.7.4 | ||
cycler==0.10.0 | ||
decorator==4.4.0 | ||
enum34==1.1.6 | ||
futures==3.2.0 | ||
isort==4.3.18 | ||
kiwisolver==1.1.0 | ||
lazy-object-proxy==1.3.1 | ||
matplotlib==2.2.4 | ||
mccabe==0.6.1 | ||
mlxtend==0.15.0.0 | ||
networkx==2.2 | ||
numpy==1.16.3 | ||
pandas==0.24.2 | ||
pylint==1.9.4 | ||
pyparsing==2.4.0 | ||
python-dateutil==2.8.0 | ||
pytz==2019.1 | ||
scikit-learn==0.20.3 | ||
scipy==1.2.1 | ||
singledispatch==3.4.0.3 | ||
six==1.12.0 | ||
sklearn==0.0 | ||
subprocess32==3.5.3 | ||
wrapt==1.11.1 |