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 | efcb452 | 2019-12-02 16:59:19 +0200 | [diff] [blame] | 6 | && pip install -U robotframework-requests\ |
ss412g | de19068 | 2019-10-24 09:29:26 +0300 | [diff] [blame] | 7 | && apt-get update |
ss412g | 07ef76d | 2019-08-12 17:26:40 +0300 | [diff] [blame] | 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" ] |