Skip to content

Commit

Permalink
Add initial docker files
Browse files Browse the repository at this point in the history
  • Loading branch information
DonkeyOatie committed Nov 19, 2015
1 parent be119ba commit 2720806
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM ubuntu:14.04

ENV HOME /root
ENV DEBIAN_FRONTEND noninteractive

ADD ./ /code/

RUN locale-gen --no-purge en_US.UTF-8
ENV LC_ALL en_US.UTF-8
RUN update-locale LANG=en_US.UTF-8

RUN apt-get update -qq
RUN cat /code/apt-packages.txt | xargs apt-get --yes --force-yes install

EXPOSE 8000 8983

CMD ["echo", "hello world"]
13 changes: 13 additions & 0 deletions apt-packages.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
python-pip
postgresql
postgresql-server-dev-9.3
default-jre
gcc
python-dev
libjpeg-dev
libfreetype6-dev
zlib1g-dev
rabbitmq-server
build-essential
libxslt1-dev
mongodb
64 changes: 64 additions & 0 deletions requirements-docker.pip
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
amqp==1.0.13
anyjson==0.3.3
billiard==2.7.3.34
boto==2.38.0
celery==3.0.23
decorator==4.0.4
dict2xml==1.1
Django==1.5.12
django-braces==1.2.2
django-celery==3.0.23
django-cors-headers==0.12
django-digest==1.13
django-filter==0.7
django-guardian==1.3.2
django-oauth-toolkit==0.5.0
django-registration==1.0
django-ses==0.7.0
django-taggit==0.10
django-templated-email==0.4.1
djangorestframework==2.3.8
dpath==1.2.post45
elaphe==0.5.6
funcsigs==0.4
gdata==2.0.18
httmock==1.0.7
httplib2==0.8
ipdbplugin==1.4.1
ipython==4.0.0
ipython-genutils==0.1.0
kombu==2.5.16
lxml==3.2.4
Markdown==2.3.1
mock==1.3.0
nose==1.3.7
numpy==1.10.1
oauthlib==0.6.0
openpyxl==1.7.0
pandas==0.12.0
path.py==8.1.2
pbr==1.8.1
pexpect==4.0.1
pickleshare==0.5
Pillow==3.0.0
poster==0.8.1
psycopg2==2.5.3
ptyprocess==0.5
pybamboo==0.5.8.1
pymongo==2.6.3
python-dateutil==2.4.2
python-digest==1.7
pytz==2015.7
pyxform==0.9.20
raven==5.1.1
recaptcha-client==1.0.6
requests==2.0.1
simplegeneric==0.8.1
simplejson==2.6.2
six==1.10.0
South==1.0.2
traitlets==4.0.0
unicodecsv==0.9.4
wheel==0.24.0
xlrd==0.9.2
xlwt==0.7.5

0 comments on commit 2720806

Please sign in to comment.