Permalink
2 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
13 additions
and
0 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
@@ -0,0 +1,13 @@ | ||
FROM ubuntu:14.04 | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y python | ||
RUN apt-get install -y python-pip | ||
RUN apt-get clean all | ||
|
||
RUN pip install ec2stack | ||
RUN pip install --upgrade requests | ||
|
||
EXPOSE 5000 | ||
|
||
CMD ["ec2stack"] |
1cbbfa6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Out of curiosity, why not start from
python
instead ofubuntu:1404
?1cbbfa6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed that after the fact...we should probably move it to python..