Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid duplicate requirements installation #65

Merged
merged 1 commit into from
Oct 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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