Skip to content

Commit

Permalink
[System Tests] Fix dockerfile (#1066)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hedingber committed Jun 30, 2021
1 parent 4bb6967 commit f995485
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions dockerfiles/test-system/Dockerfile
Expand Up @@ -25,9 +25,10 @@ RUN apt-get update && apt-get install --no-install-recommends -y \

RUN python -m pip install --upgrade pip~=20.2.0

COPY ./dockerfiles/test-system/requirements.txt /tmp
COPY ./dockerfiles/test-system/extras-requirements.txt /tmp
RUN python -m pip install -r /tmp/requirements.txt -r /tmp/extras-requirements.txt && rm -f /tmp/requirements.txt && rm -f /tmp/extras-requirements.txt
COPY ./dockerfiles/test-system/requirements.txt /tmp/test-system-requirements.txt
COPY ./extras-requirements.txt /tmp
COPY ./requirements.txt /tmp
RUN python -m pip install -r /tmp/requirements.txt -r /tmp/extras-requirements.txt -r /tmp/test-system-requirements.txt && rm -f /tmp/*requirements.txt
COPY . /tmp/mlrun
RUN cd /tmp/mlrun && python -m pip install ".[complete]" && mv tests /tests && cd /tmp && rm -rf mlrun

Expand Down

0 comments on commit f995485

Please sign in to comment.