ERROR when 'docker build -f docker/Dockerfile -t alphafold . '
When I run 'docker build -f docker/Dockerfile -t alphafold . ', it has " ERROR: failed to solve: process "/bin/bash -o pipefail -c conda install -qy conda==4.13.0 && conda install -y -c conda-forge openmm=7.7.0 cudatoolkit==${CUDA_VERSION} pdbfixer pip python=3.8 && conda clean --all --force-pkgs-dirs --yes" did not complete successfully: exit code: 1 ". Please help me to solve this problem.
It seems that changing the original code
"ENV PATH="/opt/conda/bin:$PATH"
RUN conda install -qy conda==4.13.0
&& conda install -y -c conda-forge
openmm=7.7.0
cudatoolkit==${CUDA_VERSION}
pdbfixer
pip
python=3.8
&& conda clean --all --force-pkgs-dirs --yes" of Dockerfile
to
"ENV PATH="/opt/conda/bin:$PATH"
RUN conda install -y -c conda-forge
openmm=7.7.0
cudatoolkit==${CUDA_VERSION}
pdbfixer
pip
python=3.8
&& conda clean --all --force-pkgs-dirs --yes"
can avoide this error.
Hello. I'm facing this issue right now. Not sure if this really did get resolved? Any help would be greatly appreciated.