WIP breaking stuff: updating docker image build process for Python 3.6

This requires a new way to pass requirements.txt files to Docker (since
they now link to each other), as well as building Python ourselves (since
even Ubuntu 16.10 doesn't have a decent Python 3.6).

This is just a WIP commit, will be fixed soon(ish).
This commit is contained in:
2017-03-07 16:51:51 +01:00
parent b6f729f35e
commit af14910fa9
8 changed files with 86 additions and 34 deletions

50
docker/2_build/build.docker Executable file → Normal file
View File

@@ -1,26 +1,48 @@
FROM pillar_base
MAINTAINER Francesco Siddi <francesco@blender.org>
RUN apt-get update && apt-get install -qy \
git \
gcc \
libffi-dev \
libssl-dev \
pypy-dev \
python-dev \
python-imaging \
zlib1g-dev \
libjpeg-dev \
libtiff-dev \
python-crypto \
python-openssl
RUN sed -i 's/^# deb-src/deb-src/' /etc/apt/sources.list && \
apt-get update && \
apt-get install -qy \
git \
build-essential \
checkinstall \
curl
# \
# libffi-dev \
# libssl-dev \
# python3.6-dev \
# python3.6-imaging \
# zlib1g-dev \
# libjpeg-dev \
# libtiff-dev \
# python3.6-crypto \
# python3.6-openssl
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 xvf Python-3.6.0.tar.xz
ADD myconfigure /Python-3.6.0/myconfigure
# RUN cd Python-3.6.0/ && ./myconfigure
# RUN cd Python-3.6.0/ && make -j8 install
ENV PYTHONTARGET=/data/python
ENV WHEELHOUSE=/data/wheelhouse
ENV PIP_WHEEL_DIR=/data/wheelhouse
ENV PIP_FIND_LINKS=/data/wheelhouse
VOLUME /data/wheelhouse
VOLUME /data/python
# RUN /data/python/bin/python3.6 -m venv /data/venv
# RUN . /data/venv/bin/activate && pip install -U pip
# RUN . /data/venv/bin/activate && pip install wheel
ADD requirements.txt /requirements.txt
ADD build-wheels.sh /build-wheels.sh
ENTRYPOINT ["bash", "build-wheels.sh"]