WIP: building mod_wsgi against Python 3.6

The module is included in the built Python directory, in
/opt/python/mod-wsgi/mod_wsgi.so
This commit is contained in:
Sybren A. Stüvel 2017-03-08 12:32:54 +01:00
parent 5ad9f275ef
commit e086862567
3 changed files with 29 additions and 9 deletions

View File

@ -5,5 +5,3 @@ RUN apt-get update
RUN apt-get install -qyy \
-o APT::Install-Recommends=false -o APT::Install-Suggests=false \
openssl ca-certificates
RUN mkdir -p /data/git/pillar /data/config /data/venv /data/wheelhouse

View File

@ -17,7 +17,7 @@ echo "Python will be built to $PYTHONTARGET"
docker build -t pillar_build -f buildpy.docker .
# Use the docker image to build Python 3.6.
# Use the docker image to build Python 3.6 and mod-wsgi
GID=$(id --group)
docker run --rm -i \
-v "$PYTHONTARGET:/opt/python" \
@ -30,6 +30,17 @@ cd \$PYTHONSOURCE
--enable-shared \
--with-ensurepip=upgrade
make -j8 install
# Make sure we can run Python
ldconfig
# Build mod-wsgi-py3 for Python 3.6
cd /dpkg/mod-wsgi-*
./configure --with-python=/opt/python/bin/python3
make -j8 install
mkdir -p /opt/python/mod-wsgi
cp /usr/lib/apache2/modules/mod_wsgi.so /opt/python/mod-wsgi
chown -R $UID:$GID /opt/python/*
EOT
@ -41,7 +52,6 @@ find $PYTHONTARGET/lib -name '*.so.*' -o -name '*.so' | while read libname; do
strip "$libname"
done
# Create another docker image which contains the actual Python.
# This one will serve as base for the Wheel builder and the
# production image.

View File

@ -1,10 +1,11 @@
FROM pillar_base
MAINTAINER Sybren A. Stüvel <sybren@blender.studio>
LABEL maintainer Sybren A. Stüvel <sybren@blender.studio>
RUN sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list && \
apt-get update && \
apt-get install -qy \
build-essential \
apache2-dev \
checkinstall \
curl
@ -12,12 +13,23 @@ RUN apt-get build-dep -y python3.5
ADD Python-3.6.0.tar.xz.sha256 /Python-3.6.0.tar.xz.sha256
RUN curl -O https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz
RUN sha256sum -c Python-3.6.0.tar.xz.sha256
RUN tar xf Python-3.6.0.tar.xz
RUN rm Python-3.6.0.tar.xz
# Install Python sources
RUN curl -O https://www.python.org/ftp/python/3.6.0/Python-3.6.0.tar.xz && \
sha256sum -c Python-3.6.0.tar.xz.sha256 && \
tar xf Python-3.6.0.tar.xz && \
rm -v Python-3.6.0.tar.xz
# Install mod-wsgi sources
RUN mkdir -p /dpkg && cd /dpkg && apt-get source libapache2-mod-wsgi-py3
# To be able to install Python outside the docker.
VOLUME /opt/python
# To be able to run Python; after building, ldconfig has to be re-run to do this.
# This makes it easier to use Python right after building (for example to build
# mod-wsgi for Python 3.6).
RUN echo /opt/python/lib > /etc/ld.so.conf.d/python.conf
RUN ldconfig
ENV PATH=/opt/python/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV PYTHONSOURCE=/Python-3.6.0