Merge "RIC-1044: Add array size checks"
[ric-plt/e2mgr.git] / Automation / Dockerfile
1 FROM python:3.6
2
3 RUN python3 -m pip install robotframework \
4     && pip install --upgrade RESTinstance \
5     && pip install docker \
6     && pip install -U robotframework-requests\
7     && apt-get update 
8
9 WORKDIR /opt
10 COPY ./Scripts /opt/Scripts
11 COPY ./Tests /opt/Tests
12 COPY ./run_tests.sh /opt/run_tests.sh
13
14 ENV DOCKER_HOST_IP  "127.0.0.1"
15
16 CMD [ "/opt/run_tests.sh" ]