diff options
| author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2015-09-09 17:04:07 -0300 | 
|---|---|---|
| committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2015-09-11 15:21:11 -0300 | 
| commit | d13bcb34c7636876c69e39399129957a6c11da03 (patch) | |
| tree | 5e63527a36f4348a9ba56d772344695b2257a85d | |
| parent | cd9a84070591e18780bd244925f443351e71d1cb (diff) | |
[pkg] add libzmq dependency
This is needed if we use wheels, since the zmq library is not build as
it is when we install from code.
| -rw-r--r-- | docker/Dockerfile | 1 | ||||
| -rwxr-xr-x | docker/leap_bootstrap.sh | 2 | 
2 files changed, 2 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 857c3cd0..d5a7b57e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,6 +8,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins      libffi-dev \      libsqlite3-dev \      libssl-dev \ +    libzmq-dev \      openvpn \      pyside-tools \      python-dev \ diff --git a/docker/leap_bootstrap.sh b/docker/leap_bootstrap.sh index 195527e3..4f553ee7 100755 --- a/docker/leap_bootstrap.sh +++ b/docker/leap_bootstrap.sh @@ -48,7 +48,7 @@ apt_install_dependencies() {      status="installing system dependencies"      echo "${cc_green}Status: $status...${cc_normal}"      set -x -    sudo apt-get install -y git python-dev python-setuptools python-virtualenv python-pip libssl-dev python-openssl libsqlite3-dev g++ openvpn pyside-tools python-pyside libffi-dev +    sudo apt-get install -y git python-dev python-setuptools python-virtualenv python-pip libssl-dev python-openssl libsqlite3-dev g++ openvpn pyside-tools python-pyside libffi-dev libzmq-dev      set +x  }  | 
