-
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 branch 'master' of http://www.github.com/twestbrookunh/paladin
- Loading branch information
Showing
3 changed files
with
428 additions
and
3 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,26 @@ | ||
FROM ubuntu:16.04 | ||
MAINTAINER sminot@fredhutch.org | ||
|
||
# Install prerequisites | ||
RUN apt update && \ | ||
apt-get install -y libcurl4-openssl-dev git make gcc \ | ||
zlib1g-dev wget unzip python2.7 \ | ||
python-dev python-pip bats awscli curl && \ | ||
pip install boto3==1.4.7 | ||
|
||
# Set the default langage to C | ||
ENV LC_ALL C | ||
|
||
# Import the repo to /usr/bin/paladin | ||
RUN mkdir /usr/bin/paladin | ||
ADD . /usr/bin/paladin/ | ||
RUN cd /usr/bin/paladin && \ | ||
make && \ | ||
ln -s /usr/bin/paladin/paladin /usr/local/bin/ && \ | ||
ln -s /usr/bin/paladin/run.py /usr/local/bin/ | ||
|
||
# Test the installation | ||
RUN cd /usr/bin/paladin/sample_data && \ | ||
bash make_test.sh && \ | ||
cd /usr/bin/paladin && \ | ||
rm -r sample_data |
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.