FROM opensuse:42.2
MAINTAINER Jean Gabes <naparuba@gmail.com>


RUN        zypper --non-interactive install python
RUN        zypper --non-interactive install python-leveldb
RUN        zypper --non-interactive install python-CherryPy
RUN        zypper --non-interactive install python-pycrypto
RUN        zypper --non-interactive install python-Jinja2
RUN        zypper --non-interactive install python-requests
RUN        zypper --non-interactive install python-setuptools

ADD        . /root/opsbro-oss
WORKDIR       /root/opsbro-oss


ENTRYPOINT    test/test_one_linux_installation.sh  && test/assert_group.sh "opensuse"

