tests/tools/Docker/beremiz-sikuli/Dockerfile
changeset 3549 0af7b6a96c53
parent 3542 c1d627434cd1
child 3679 b6bca75bf3fa
equal deleted inserted replaced
3548:da7b461f54b7 3549:0af7b6a96c53
    34                \
    34                \
    35                `# to build tested apps` \
    35                `# to build tested apps` \
    36                build-essential automake flex bison mercurial \
    36                build-essential automake flex bison mercurial \
    37                libgtk-3-dev libgl1-mesa-dev libglu1-mesa-dev \
    37                libgtk-3-dev libgl1-mesa-dev libglu1-mesa-dev \
    38                libpython2.7-dev libssl-dev \
    38                libpython2.7-dev libssl-dev \
    39                python2 virtualenv
    39                python2 virtualenv cmake
    40 
    40 
    41 # link obtained from https://raiman.github.io/SikuliX1/downloads.html
    41 # link obtained from https://raiman.github.io/SikuliX1/downloads.html
    42 RUN set -xe && \
    42 RUN set -xe && \
    43     wget -qP /usr/local/bin \
    43     wget -qP /usr/local/bin \
    44         https://launchpad.net/sikuli/sikulix/2.0.5/+download/sikulixide-2.0.5.jar && \
    44         https://launchpad.net/sikuli/sikulix/2.0.5/+download/sikulixide-2.0.5.jar && \
    58 RUN virtualenv --python=$(which python2) ~/beremizenv
    58 RUN virtualenv --python=$(which python2) ~/beremizenv
    59 
    59 
    60 RUN ~/beremizenv/bin/pip install \
    60 RUN ~/beremizenv/bin/pip install \
    61         pytest pytest-timeout ddt \
    61         pytest pytest-timeout ddt \
    62         lxml future matplotlib zeroconf2 enum34 pyro sslpsk posix_spawn \
    62         lxml future matplotlib zeroconf2 enum34 pyro sslpsk posix_spawn \
    63         twisted nevow autobahn click\
    63         twisted nevow autobahn click opcua \
    64         wxPython==4.1.1
    64         wxPython==4.1.1
    65 
    65 
    66 # Point to python binary test scripts will use
    66 # Point to python binary test scripts will use
    67 ENV BEREMIZPYTHONPATH /home/$UNAME/beremizenv/bin/python
    67 ENV BEREMIZPYTHONPATH /home/$UNAME/beremizenv/bin/python
    68 
    68