diff options
author | Kali Kaneko <kali@leap.se> | 2018-02-13 23:18:04 +0100 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2018-02-15 16:36:50 +0100 |
commit | c52b9f2356189cd09b5992886dbbda6bd7b60cd3 (patch) | |
tree | 36ca3d02b61af628f23cb4eb0749e6e411924bb2 /pkg | |
parent | c3c32258aaf2e1484f828e3198eff9880d7ba2e7 (diff) |
[pkg] add dependencies for building bitmask-systray too
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/docker_bundleapt/Dockerfile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/pkg/docker_bundleapt/Dockerfile b/pkg/docker_bundleapt/Dockerfile index 31484156..76a43657 100644 --- a/pkg/docker_bundleapt/Dockerfile +++ b/pkg/docker_bundleapt/Dockerfile @@ -6,7 +6,9 @@ LABEL Description="Image for building Bitmask bundle based on python:2.7-slim-st RUN apt update && apt upgrade -y RUN pip install -U pip -# Install bitmask-dev build deps -------------------------------- +# Install bitmask-dev build deps, +# plus some dependencies needed by bitmask-systray too, +# so that we can reuse the bundler image. RUN apt install -y --no-install-recommends \ build-essential virtualenv libpython-dev \ libsqlcipher-dev libssl-dev libffi-dev \ @@ -15,8 +17,8 @@ RUN apt install -y --no-install-recommends \ libqt5printsupport5 \ qttranslations5-l10n libgl1-mesa-glx \ libusb-0.1-4 patchelf wget \ - gnupg1 git libgl1-mesa-glx - + gnupg1 git libgl1-mesa-glx \ + libappindicator3-dev libgtk-3-dev golang # Pyinstaller custom versions #ARG PYINSTALLER_TAG=v3.2 |