Я хочу построить образ докера в Windows, мой файл докера:
FROM jupyter/scipy-notebook
MAINTAINER Jon Krohn <jon@untapt.com>
USER $NB_USER
# install TensorFlow
RUN conda install --quiet --yes 'tensorflow=1.0*'
# install tflearn and keras:
RUN pip install tflearn==0.3.2
RUN pip install keras==2.0.8
# install NLP packages:
RUN pip install nltk==3.2.4
RUN pip install gensim==2.3.0
# install Reinforcement Learning packages:
RUN pip install gym==0.9.4
, но когда я собираю его с помощью этой команды
docker build -t tensorflow-ll-stack .
, я получаю это сообщение об ошибке
The environment is inconsistent, please check the package plan carefully
The following packages are causing the inconsistency:
- conda-forge/noarch::seaborn==0.9.0=py_0
- conda-forge/linux-64::matplotlib==3.0.3=py37_1
failed
SpecsConfigurationConflictError: Requested specs conflict with configured specs.
requested specs:
- tensorflow=1.0
pinned specs:
- python=3.7
Use 'conda config --show-sources' to look for 'pinned_specs' and 'track_features'
configuration parameters. Pinned specs may also be defined in the file
/opt/conda/conda-meta/pinned.
The command '/bin/sh -c conda install --quiet --yes 'tensorflow=1.0*'' returned a non-zero code: 1
спасибо за любую помощь.