diff options
author | drebs <drebs@leap.se> | 2017-04-19 10:18:27 +0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2017-04-19 11:49:42 +0200 |
commit | 40f2cb8b1f07b1346e01ff69b57e14c492f1cd0b (patch) | |
tree | 9cab2f54014ffb7a56e1d75fd5ef0a70369afd63 /scripts/docker/Dockerfile | |
parent | a4558ea4874e0de3561f228b41ef0a94a2e4c326 (diff) |
[test] remove docker scripts from this repo
Docker scripts are only used for CI and do not need to be in this
repository. Beause of that, we decided to moved the docker scripts to a
private repository where dockerfiles for other parts of leap also live.
Diffstat (limited to 'scripts/docker/Dockerfile')
-rw-r--r-- | scripts/docker/Dockerfile | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile deleted file mode 100644 index 7a741e84..00000000 --- a/scripts/docker/Dockerfile +++ /dev/null @@ -1,38 +0,0 @@ -# start with a fresh debian image -# we use backports because of libsqlcipher-dev -FROM debian:jessie-backports - -RUN apt-get update - -# needed to build python twisted module -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 -# needed to support keymanager -RUN apt-get -y install libsqlite3-dev - -# install pip and tox -RUN apt-get -y install python-pip -# We need git from backports because it has -# the "%cI: committer date, strict ISO 8601 format" -# pretty format which is used by pytest-benchmark -RUN apt-get -y install -t jessie-backports git - -# Use use to show connection to couchdb during CI -RUN apt-get -y install curl - -RUN pip install -U pip -RUN pip install tox - -# clone repositories -RUN mkdir -p /builds/leap -RUN git clone https://0xacab.org/leap/soledad.git /builds/leap/soledad - -# use tox to install everything needed to run tests -RUN cd /builds/leap/soledad/testing && tox -v -r --notest - -RUN mkdir -p /usr/local/soledad -COPY files/bin/ /usr/local/soledad/ |