summaryrefslogtreecommitdiff
path: root/tests/docker/Dockerfile
blob: 0712ba7c86e63206bef391ab8103428352b1285b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM 0xacab.org:4567/leap/docker/ubuntu:artful_amd64

MAINTAINER LEAP Encryption Access Project <info@leap.se>
LABEL Description="Image for building bitmask-dev based on Ubuntu 17:10" Vendor="LEAP" Version="1.0"

# Install bitmask-dev build and test deps
RUN apt-get update && \
  apt-get -y install --no-install-recommends \
  build-essential tox libpython-dev \
  libsqlcipher-dev libssl-dev libffi-dev \
  python-pyqt5 python-pyqt5.qtwebkit \
  nodejs npm mocha \
  git swaks uuid-runtime \
  openvpn policykit-1 lxpolkit \
  wget patchelf libusb-0.1-4 \
  xvfb \
  # needed for chromedriver
  libgconf-2-4 chromium-browser unzip

WORKDIR /tmp
RUN wget https://chromedriver.storage.googleapis.com/2.33/chromedriver_linux64.zip && \
  unzip chromedriver_linux64.zip && \
  cp chromedriver /usr/local/bin

RUN /usr/local/bin/chromedriver --version