diff options
Diffstat (limited to 'scripts/docker')
-rw-r--r-- | scripts/docker/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile index 8c6bfdb3..26d5f782 100644 --- a/scripts/docker/Dockerfile +++ b/scripts/docker/Dockerfile @@ -1,5 +1,5 @@ # start with a fresh debian image -FROM debian +FROM debian:jessie-backports RUN apt-get update @@ -10,6 +10,8 @@ RUN apt-get -y install libpython2.7-dev # needed to build python cryptography module 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 # install pip and tox RUN apt-get -y install python-pip |