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

Layer Reduction on pip3 install in Dockerfile.ml #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
15 changes: 8 additions & 7 deletions Dockerfile.ml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,14 @@ COPY --from=pytorch /usr/local/lib/python3.6/dist-packages/ /usr/local/lib/pytho
#
# python pip packages
#
RUN pip3 install --no-cache-dir --ignore-installed pybind11
RUN pip3 install --no-cache-dir --verbose onnx
RUN pip3 install --no-cache-dir --verbose scipy
RUN pip3 install --no-cache-dir --verbose scikit-learn
RUN pip3 install --no-cache-dir --verbose pandas
RUN pip3 install --no-cache-dir --verbose pycuda
RUN pip3 install --no-cache-dir --verbose numba
RUN pip3 install --no-cache-dir --ignore-installed pybind11 && \
pip3 install --no-cache-dir --verbose onnx && \
pip3 install --no-cache-dir --verbose scipy && \
pip3 install --no-cache-dir --verbose scikit-learn && \
pip3 install --no-cache-dir --verbose pandas && \
pip3 install --no-cache-dir --verbose pycuda && \
pip3 install --no-cache-dir --verbose colorama && \
pip3 install --no-cache-dir --verbose numba


#
Expand Down