summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2016-10-07 11:46:22 +0200
committervarac <varacanero@zeromail.org>2016-10-07 11:46:22 +0200
commit538a2ee40b46d4a4c29b05d866d0f36a834e4d1d (patch)
tree52270d0bb83ce26564a2f4a021a5ee473ec759e0
parent1508b99123c0329ae6f755c3093a03ade103c264 (diff)
add bitmask-dev image
-rw-r--r--docker/bitmask-dev/Dockerfile14
1 files changed, 14 insertions, 0 deletions
diff --git a/docker/bitmask-dev/Dockerfile b/docker/bitmask-dev/Dockerfile
new file mode 100644
index 0000000..7a7fa2f
--- /dev/null
+++ b/docker/bitmask-dev/Dockerfile
@@ -0,0 +1,14 @@
+# start with a fresh official ruby image
+# https://hub.docker.com/_/ruby/
+FROM ubuntu:16.04
+
+MAINTAINER LEAP Encryption Access Project <info@leap.se>
+LABEL Description="Image for building bitmask-dev based on Ubuntu 16:04" Vendor="LEAP" Version="1.0"
+
+RUN apt-get update
+
+# Install bitmask-dev build deps
+RUN apt-get -y install build-essential python-virtualenv libpython-dev \
+ libsqlcipher-dev libssl-dev libffi-dev python-pyqt5 python-pyqt5.qtwebkit \
+ nodejs npm nodejs-legacy
+