blob: e981b44bd5462beca5333fb3aa17c3430aca2238 [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 \
ss412gefcb4522019-12-02 16:59:19 +02006 && pip install -U robotframework-requests\
ss412gde190682019-10-24 09:29:26 +03007 && apt-get update
ss412g07ef76d2019-08-12 17:26:40 +03008
9WORKDIR /opt
10COPY ./Scripts /opt/Scripts
11COPY ./Tests /opt/Tests
12COPY ./run_tests.sh /opt/run_tests.sh
13
14ENV DOCKER_HOST_IP "127.0.0.1"
15
16CMD [ "/opt/run_tests.sh" ]