diff options
Diffstat (limited to 'pkg/docker_bundle/Dockerfile')
-rw-r--r-- | pkg/docker_bundle/Dockerfile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/pkg/docker_bundle/Dockerfile b/pkg/docker_bundle/Dockerfile index 5c3797d3..90ad6eb3 100644 --- a/pkg/docker_bundle/Dockerfile +++ b/pkg/docker_bundle/Dockerfile @@ -4,15 +4,17 @@ # 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 -- kali. -FROM ubuntu:16.04 +FROM ubuntu:17.04 MAINTAINER LEAP Encryption Access Project <info@leap.se> -LABEL Description="Image for building Bitmask bundle based on Ubuntu 16:04" Vendor="LEAP" Version="1.0" +LABEL Description="Image for building Bitmask bundle based on Ubuntu 17:04" Vendor="LEAP" Version="1.1" 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 \ - libusb-0.1-4 patchelf wget - +RUN apt install -y --no-install-recommends \ + build-essential virtualenv libpython-dev \ + libsqlcipher-dev libssl-dev libffi-dev \ + python-pyqt5 python-pyqt5.qtwebengine \ + libusb-0.1-4 patchelf wget \ + git |