Therefore it compiles agains more common version of GLIBC.
Now works out of the box on Debian wheezy, centos:centos6 and other stable
Of course it works on new distributions. Tested with:
debian:jessie and
ubuntu:14.04
Signed-off-by: Alexander Holbreich <alexander@holbreich.org>
Conflicts:
Dockerfile
12 lines
310 B
Docker
12 lines
310 B
Docker
FROM debian:wheezy
|
|
RUN apt-get update -qq && apt-get install -qy python python-pip python-dev git && apt-get clean
|
|
WORKDIR /code/
|
|
|
|
ADD requirements.txt /code/
|
|
RUN pip install -r requirements.txt
|
|
|
|
ADD requirements-dev.txt /code/
|
|
RUN pip install -r requirements-dev.txt
|
|
|
|
ADD . /code/
|
|
RUN python setup.py install
|