Fix release notes
[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     && apt-get update 
7
8 WORKDIR /opt
9 COPY ./Scripts /opt/Scripts
10 COPY ./Tests /opt/Tests
11 COPY ./run_tests.sh /opt/run_tests.sh
12
13 ENV DOCKER_HOST_IP  "127.0.0.1"
14
15 CMD [ "/opt/run_tests.sh" ]