1 root@ric01:/opt/docker# cat Dockerfile
4 RUN python3 -m pip install robotframework \
5 && pip3 install --upgrade RESTinstance \
6 && pip install docker \
8 && apt-get install -y vim
11 COPY ./Scripts /opt/Scripts
12 COPY ./Tests /opt/Tests
13 COPY ./run_tests.sh /opt/run_tests.sh
15 ENV DOCKER_HOST_IP "127.0.0.1"
17 CMD [ "/opt/run_tests.sh" ]