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

Dockerfiles won't work #3749

Closed
jkaspereit opened this issue Sep 29, 2022 · 1 comment
Closed

Dockerfiles won't work #3749

jkaspereit opened this issue Sep 29, 2022 · 1 comment

Comments

@jkaspereit
Copy link

I checked out the master branch.
Created the Dockerfile with: make Dockerfile.train
Tried to build the Dockerfile and ended up with the following exception in Step 2 (RUN apt-get update && apt-get install -y --no-install-recommends apt-utils....) :

#5 14.64 W: GPG error: https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A4B469963BF863CC
#5 14.64 E: The repository 'https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64 InRelease' is no longer signed.
[+] Building 12.8s (15/19)

I tried to fix the issue by adding the following lines:

Updating CUDA Linux GPG Repository Key

RUN apt-get install wget
RUN apt-key del 7fa2af80
RUN wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu1804/x86_64/cuda-keyring_1.0-1_all.deb
RUN dpkg -i cuda-keyring_1.0-1_all.deb
RUN sed -i '/developer.download.nvidia.com/compute/cuda/repos/d' /etc/apt/sources.list
RUN rm etc/apt/sources.list.d/cuda-ubuntu1804-x86_64.list
RUN rm etc/apt/sources.list.d/cuda.list

Then i built again and crashed again in Step 12/17 ( => ERROR [12/17] RUN cd /DeepSpeech && pip3 install --upgrade pip==20.2.2 wheel==0.34.2 setuptools==49.6.0 && DS_NODECODER=y DS_NOTENSORFLOW=y pip3 install ....) with the following error:

ERROR: Could not find a version that satisfies the requirement scipy<1.9.0,>=1.7.0

Any advice how to fix this error? Or does someone have a working Dockerfile?

@ftyers
Copy link
Collaborator

ftyers commented Sep 29, 2022

See #3693 .

@ftyers ftyers closed this as completed Sep 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants