blob: 6733a6bd9a6e503f7589f4a4280cbb57aceeb3a8 [file] [log] [blame]
ss412g07ef76d2019-08-12 17:26:40 +03001FROM python:3.6
2
3RUN python3 -m pip install robotframework \
ss412gde190682019-10-24 09:29:26 +03004 && pip install --upgrade RESTinstance \
ss412g07ef76d2019-08-12 17:26:40 +03005 && pip install docker \
ss412gde190682019-10-24 09:29:26 +03006 && apt-get update
ss412g07ef76d2019-08-12 17:26:40 +03007
8WORKDIR /opt
9COPY ./Scripts /opt/Scripts
10COPY ./Tests /opt/Tests
11COPY ./run_tests.sh /opt/run_tests.sh
12
13ENV DOCKER_HOST_IP "127.0.0.1"
14
15CMD [ "/opt/run_tests.sh" ]