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

fixed 4086 and 4083 issues #4098

Merged
merged 1 commit into from
Jun 11, 2021
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions docker/hyperzoo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ RUN apt-get install -y python3-minimal && \
apt-get install -y build-essential python3 python3-setuptools python3-dev python3-pip && \
pip3 install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir --upgrade setuptools && \
pip install --no-cache-dir numpy scipy && \
pip install --no-cache-dir numpy==1.18.1 scipy && \
pip install --no-cache-dir pandas==1.0.3 && \
pip install --no-cache-dir scikit-learn matplotlib seaborn jupyter jupyterlab wordcloud moviepy requests h5py opencv-python tensorflow==1.15.0 && \
pip install --no-cache-dir torch==1.7.1 torchvision==0.8.2 && \
Expand All @@ -170,7 +170,7 @@ RUN apt-get install -y python3-minimal && \
pip install --no-cache-dir cmake==3.16.3 && \
pip install --no-cache-dir horovod==0.19.2 && \
pip install --no-cache-dir tf_slim && \
git clone https://github.com/tensorflow/models/ /opt/models
git clone https://github.com/tensorflow/models/ /opt/models

ADD ./start-notebook-spark.sh /opt
ADD ./start-notebook-k8s.sh /opt
Expand All @@ -182,4 +182,3 @@ RUN chmod a+x /opt/start-notebook-spark.sh && \
WORKDIR /opt/spark/work-dir

ENTRYPOINT [ "/opt/entrypoint.sh" ]

14 changes: 7 additions & 7 deletions docker/zoo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,16 +60,16 @@ RUN wget $JDK_URL && \
#python
RUN apt-get install -y python3-minimal && \
apt-get install -y build-essential python3 python3-setuptools python3-dev python3-pip && \
pip3 install --upgrade pip==20.2.4 && \
pip install --upgrade setuptools && \
pip install numpy scipy && \
pip install --no-binary pandas -I pandas && \
pip install scikit-learn matplotlib seaborn jupyter wordcloud moviepy requests h5py opencv-python tensorflow==1.15.0 && \
pip install torch==1.1.0 torchvision==0.3.0 -f https://download.pytorch.org/whl/torch_stable.html && \
pip3 install --no-cache-dir --upgrade pip==20.2.4 && \
pip install --no-cache-dir --upgrade setuptools && \
pip install --no-cache-dir numpy==1.18.1 scipy && \
pip install --no-cache-dir --no-binary pandas -I pandas && \
pip install --no-cache-dir scikit-learn matplotlib seaborn jupyter jupyterlab wordcloud moviepy requests h5py opencv-python tensorflow==1.15.0 && \
pip install --no-cache-dir torch==1.1.0 torchvision==0.3.0 -f https://download.pytorch.org/whl/torch_stable.html && \
ln -s /usr/bin/python3 /usr/bin/python && \
#Fix tornado await process
pip uninstall -y -q tornado && \
pip install tornado==5.1.1 && \
pip install --no-cache-dir tornado==5.1.1 && \
python3 -m ipykernel.kernelspec

#spark
Expand Down