diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2016-10-06 18:56:25 -0300 |
---|---|---|
committer | Victor Shyba <victor1984@riseup.net> | 2016-10-21 14:09:54 -0300 |
commit | e121a92161d3a18cebc8796d43b98c05b6916088 (patch) | |
tree | e0ed44b6144f1b0788fd4d1853a20b8f8551036f | |
parent | ee4dc679c8ae1a87a9b5ef3b2757a3113218e4c6 (diff) |
[feature] adds libsqlite3-dev on docker image
This is necessary for keymanager and this image is shared, thus adding
here with a comment explaining why. Also explained why using
jessie-backports.
-rw-r--r-- | scripts/docker/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile index 26d5f782..21764d84 100644 --- a/scripts/docker/Dockerfile +++ b/scripts/docker/Dockerfile @@ -1,4 +1,5 @@ # start with a fresh debian image +# we use backports because of libsqlcipher-dev FROM debian:jessie-backports RUN apt-get update @@ -12,6 +13,8 @@ RUN apt-get -y install libssl-dev RUN apt-get -y install libffi-dev # needed to build pysqlcipher RUN apt-get -y install libsqlcipher-dev +# needed to support keymanager +RUN apt-get -y install libsqlite3-dev # install pip and tox RUN apt-get -y install python-pip |