diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-04 18:08:49 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-05-05 10:17:33 +0200 |
commit | 5e9f1dd4e0f38931155339ab8389d500004f0fde (patch) | |
tree | fd435eccfee44c2d5ba9eb843772a69de98c2bb3 /pkg/docker_bundle/Dockerfile | |
parent | 0ab8bda086ec2953a644265a6a0d7af400b37a7d (diff) |
[bug] add missing libs to make the bundle work on latest ubuntu
- Resolves: #8876
Diffstat (limited to 'pkg/docker_bundle/Dockerfile')
-rw-r--r-- | pkg/docker_bundle/Dockerfile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/pkg/docker_bundle/Dockerfile b/pkg/docker_bundle/Dockerfile index 686bc7d..41635cb 100644 --- a/pkg/docker_bundle/Dockerfile +++ b/pkg/docker_bundle/Dockerfile @@ -1,3 +1,11 @@ +# Thiis is *almost* a copy of the file that's used for building the bundle docker image. +# The copy that the CI uses is in tests/docker/Dockerfile + +# It has diverged from the original, but it's because I don't want the clutter +# of all the nodejs and friends inside a container for bundling. + +# TODO consider converging the two copies! + FROM ubuntu:16.04 MAINTAINER LEAP Encryption Access Project <info@leap.se> @@ -7,5 +15,6 @@ RUN apt update && apt upgrade -y # Install bitmask-dev build deps RUN apt install -y git build-essential python-virtualenv libpython-dev \ - libsqlcipher-dev libssl-dev libffi-dev python-pyqt5 python-pyqt5.qtwebkit + libsqlcipher-dev libssl-dev libffi-dev python-pyqt5 python-pyqt5.qtwebkit \ + libusb-0.1-4 patchelf |