Skip to content

Commit

Permalink
Merge pull request #57 from msabramo/install_build_deps
Browse files Browse the repository at this point in the history
Install deps often needed for building C modules
  • Loading branch information
offbyone committed Jul 29, 2015
2 parents edcf3f4 + 1930d80 commit a9718b2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ RUN apt-get update && \

# install legacy python versions
RUN DEBIAN_FRONTEND=noninteractive apt-get -yqq install \
python2.5 python2.6 python2.7 python3.1 python3.2 python3.3 python3.4
python2.5-dev python2.6-dev python2.7-dev python3.1-dev python3.2-dev python3.3-dev python3.4-dev

# install other commonly needed libraries for building Python extensions
RUN DEBIAN_FRONTEND=noninteractive apt-get -yqq install \
freetds-dev libffi-dev libicu-dev libldap2-dev libmemcached-dev libxml2-dev libxmlsec1-dev libxslt1-dev

# add Jython installer
# ADD jython-installer-2.7-b4.jar /tmp/
Expand Down

0 comments on commit a9718b2

Please sign in to comment.