Skip to content

Commit

Permalink
avoid duplicate requirements installation (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmacata authored Oct 13, 2023
1 parent bf1ac45 commit 1637d55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actinia-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ RUN pip3 install /build/*

## install (Cython must be installed before requirements.txt)
#RUN pip3 install Cython cython-setuptools setuptools_cython
RUN pip3 install -r requirements_ubuntu19.txt && python3 setup.py install
RUN pip3 install scikit-learn && pip3 install .
## TODO: fix tests
#\
# && python3 setup.py test
Expand All @@ -109,7 +109,7 @@ WORKDIR /src
RUN git config --global http.sslVerify false
RUN git clone https://github.com/actinia-org/actinia-statistic-plugin.git /src/actinia_statistic_plugin
WORKDIR /src/actinia_statistic_plugin
RUN pip3 install -r requirements.txt && python3 setup.py install
RUN pip3 install -r requirements.txt && pip3 install .
## TODO: fix tests
#\
# && python3 setup.py test
Expand Down

0 comments on commit 1637d55

Please sign in to comment.