blob: 18a6be7a319ac854ef65bf947523b76a0f5b7dad [file] [log] [blame]
ss412g07ef76d2019-08-12 17:26:40 +03001root@ric01:/opt/docker# cat Dockerfile
2FROM python:3.6
3
4RUN 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
10WORKDIR /opt
11COPY ./Scripts /opt/Scripts
12COPY ./Tests /opt/Tests
13COPY ./run_tests.sh /opt/run_tests.sh
14
15ENV DOCKER_HOST_IP "127.0.0.1"
16
17CMD [ "/opt/run_tests.sh" ]