ss412g | 07ef76d | 2019-08-12 17:26:40 +0300 | [diff] [blame] | 1 | FROM python:3.6 |
| 2 | |
| 3 | RUN python3 -m pip install robotframework \ |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 4 | && pip install --upgrade RESTinstance \ |
ss412g | 07ef76d | 2019-08-12 17:26:40 +0300 | [diff] [blame] | 5 | && pip install docker \ |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame^] | 6 | && apt-get update |
ss412g | 07ef76d | 2019-08-12 17:26:40 +0300 | [diff] [blame] | 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" ] |