-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new cookbooks for python projects
- Loading branch information
1 parent
e6995cf
commit 16c85e6
Showing
8 changed files
with
47 additions
and
15 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 |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
|
||
FROM shykes/nodejs | ||
|
||
MAINTAINER Michael Crosby | ||
|
||
RUN apt-get update | ||
RUN apt-get upgrade | ||
|
||
|
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,6 @@ | ||
FROM crosbymichael/python | ||
|
||
RUN pip install psycopg2 | ||
RUN pip install django | ||
|
||
EXPOSE 8080 |
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,17 @@ | ||
FROM crosbymichael/python | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y libfreetype6 libfreetype6-dev | ||
RUN apt-get install -y python-imaging libpng-dev | ||
RUN apt-get install -y libzmq-dev | ||
|
||
RUN pip install pyzmq | ||
RUN pip install numpy | ||
RUN pip install matplotlib | ||
RUN pip install pandas | ||
RUN pip install jinja2 | ||
RUN pip install ipython | ||
EXPOSE 8888 | ||
|
||
ENTRYPOINT ["ipython"] | ||
CMD ["notebook", "--pylab=inline"] |
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,23 @@ | ||
FROM ubuntu | ||
|
||
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | ||
RUN apt-get update | ||
RUN apt-get upgrade -y | ||
|
||
RUN apt-get install -y language-pack-en | ||
ENV LANGUAGE en_US.UTF-8 | ||
ENV LANG en_US.UTF-8 | ||
ENV LC_ALL en_US.UTF-8 | ||
|
||
RUN locale-gen en_US.UTF-8 | ||
RUN dpkg-reconfigure locales | ||
|
||
RUN apt-get install -y openssh-server git-core libxml2-dev curl python build-essential make gcc python-dev wget libsqlite3-dev sqlite3 | ||
RUN apt-get install -y postgresql-client-9.1 postgresql-client-common libpq5 | ||
RUN apt-get install -y libpq-dev | ||
|
||
RUN wget http://python-distribute.org/distribute_setup.py | ||
RUN python distribute_setup.py | ||
|
||
RUN wget https://raw.github.com/pypa/pip/master/contrib/get-pip.py | ||
RUN python get-pip.py |
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 |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# Dockerfile for redis with config to set data dir to /redis/ | ||
|
||
FROM johncosta/redis | ||
|
||
EXPOSE 6379 | ||
|
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 |
---|---|---|
|
@@ -3,8 +3,6 @@ | |
|
||
FROM ubuntu | ||
|
||
MAINTAINER Michael Crosby <[email protected]> | ||
|
||
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | ||
RUN apt-get update | ||
RUN apt-get upgrade -y | ||
|
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