Ignore:
Timestamp:
15 Oct 2015, 06:35:13 (9 years ago)
Author:
uli
Message:

Install additional packages before buildout.

libssl and libffi are needed for proper pip SSL-Downloads. We get
nasty security warnings otherwise.

git is needed to checkout the modified sphinx variant. We should get
rid of this, as it means a lot MB more to download/install/store.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/branches/docker/Dockerfile

    r13325 r13326  
    44RUN apt-get install -y python2.7-dev libxml2-dev libxslt1-dev \
    55                       zlib1g-dev python-virtualenv
    6 RUN apt-get install -y sudo wget
     6# see https://urllib3.readthedocs.org/en/latest/security.html#openssl-pyopenssl
     7RUN apt-get install -y libssl-dev libffi-dev
     8RUN apt-get install -y sudo wget git
    79
    810# add user `kofa`
     
    1416ENV HOME /home/kofa
    1517
     18# get sources
     19RUN wget https://pypi.python.org/packages/source/w/waeup.kofa/waeup.kofa-1.3.3.tar.gz && tar -xzf waeup.kofa-1.3.3.tar.gz
     20RUN mv waeup.kofa-1.3.3 waeup.kofa
     21
    1622# create a virtual env
    1723RUN virtualenv py27
Note: See TracChangeset for help on using the changeset viewer.