前提・実現したいこと
dockerのcompose upがうまくいかない
発生している問題・エラーメッセージ
Pythonのライブラリをinstallしたく、dockerfileを作成してみたのですが、
「: exit code: 100」というエラーが出て、
ERROR: Service 'notebook' failed to build : Build failed
と、先に進むことができません。
該当のソースコード
FROM continuumio/miniconda3:4.7.12 RUN apt update && \ apt install build-essential -y && \ conda install nodejs==6.11.2 -y && \ conda install requests==2.25.0 tqdm==4.54.0 -y && \ conda install pip==20.3 -y && \ conda install pandas==1.0.5 numpy==1.19.2 scipy==1.5.2 matplotlib==3.3.2 seaborn==0.11.0 jupyter jupyterlab scikit-learn==0.23.2 xlrd==1.2.0 statsmodels==0.12.1 -y && \ pip install setuptools-git==1.2 && \ pip install cmdstanpy==0.4 && \ conda install -c conda-forge fbprophet==0.6 -y && \ pip install japanize-matplotlib==1.1.3 && \ pip install pycaret==2.3.0 && \ pip install interpret==0.2.2 && \ pip install sweetviz==2.0.2 && \ pip install openpyxl==3.0.5 && \ pip install optuna==2.3.0 && \ pip install streamlit== 0.74.1 && \ pip install python-pptx==0.6.18 && \ pip install explainerdashboard==0.3.1 && \ pip install sktime==0.4.3 && \ pip install tsfresh==0.17.0 && \ pip install xgboost==1.3.3 && \ pip install catboost==0.24.4 && \ pip install geopy==2.1.0 && \ apt-get update && \ apt-get install graphviz -y && \ conda install pydotplus==2.0.2 && \ pip install beautifulsoup4==4.9.3 && \ pip install streamlit-pandas-profiling==0.1.1 && \ pip install orbit==1.0.17 && \ pip install ginza ja-ginza ==5.0.0 &&\ pip install ginza ja-ginza-electra ==5.0.0 &&\ pip install gensim==4.1.0 && \ pip install streamlit== 0.88.0 && \ pip install kneed==0.7.0 RUN apt-get update && \ apt-get install -y fonts-ipafont RUN sed -i s/^#font.family:.*sans-serif/font.family\ :\ IPAPGothic/ /opt/conda/lib/python3.7/site-packages/matplotlib/mpl-data/matplotlibrc EXPOSE 8888 8501 8050 8502 8503 WORKDIR /work
初心者であり、おそらくコーディングのミスだと思うのですが、解決方法を教えていただけると幸いです。
回答1件
あなたの回答
tips
プレビュー