pytorch
pytorch copied to clipboard
changing curl to wget in CPU only Dockerfile which will build PyTorch with MKLDNN+BLIS
curl is issuing the below error:
failed to solve with frontend dockerfile.v0: failed to solve with frontend gateway.v0: rpc error: code = Unknown desc = failed to build LLB: executor failed running [/bin/sh -c curl -v -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh && chmod +x ~/miniconda.sh && ~/miniconda.sh -b -p /opt/conda && rm ~/miniconda.sh && /opt/conda/bin/conda install -y python=${PYTHON_VERSION} conda-build && /opt/conda/bin/conda install -y nomkl pyyaml numpy ipython ninja setuptools cmake cffi typing future && /opt/conda/bin/conda clean -ya]: runc did not terminate sucessfully
Hence replaced curl with wget and it works fine.
The below commands will build the docker container and launch it: sudo DOCKER_BUILDKIT=1 docker build -t docker-image-name . sudo docker run --name docker-container-name -it docker-image-name