blob: 686bc7d19fa24e100b53f037f496fbe7c1cfabbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
FROM ubuntu:16.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"
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
|