ss412g | 07ef76d | 2019-08-12 17:26:40 +0300 | [diff] [blame] | 1 | root@ric01:/opt/docker# cat Dockerfile |
2 | FROM python:3.6 | ||||
3 | |||||
4 | RUN python3 -m pip install robotframework \ | ||||
5 | && pip3 install --upgrade RESTinstance \ | ||||
6 | && pip install docker \ | ||||
7 | && apt-get update \ | ||||
8 | && apt-get install -y vim | ||||
9 | |||||
10 | WORKDIR /opt | ||||
11 | COPY ./Scripts /opt/Scripts | ||||
12 | COPY ./Tests /opt/Tests | ||||
13 | COPY ./run_tests.sh /opt/run_tests.sh | ||||
14 | |||||
15 | ENV DOCKER_HOST_IP "127.0.0.1" | ||||
16 | |||||
17 | CMD [ "/opt/run_tests.sh" ] |