We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The runtime image provided in albu's Dockerfile is incorrect.
The original reads: FROM nvidia/cuda:8.0 however, this is not a runtime image. So there's no /bin/bash to be used for the following RUN commands.
FROM nvidia/cuda:8.0
RUN
The correct image to be used is: FROM nvidia/cuda:8.0-cudnn6-runtime-ubuntu16.04 or something of the like where an actual runtime is specified.
FROM nvidia/cuda:8.0-cudnn6-runtime-ubuntu16.04
Note: this is fixed in the other contestants submissions. Thanks to their Dockerfiles, I figured out what was wrong with albu's.
Good luck to anyone else with this issue!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The runtime image provided in albu's Dockerfile is incorrect.
The original reads:
FROM nvidia/cuda:8.0
however, this is not a runtime image. So there's no /bin/bash to be used for the following
RUN
commands.The correct image to be used is:
FROM nvidia/cuda:8.0-cudnn6-runtime-ubuntu16.04
or something of the like where an actual runtime is specified.
Note: this is fixed in the other contestants submissions. Thanks to their Dockerfiles, I figured out what was wrong with albu's.
Good luck to anyone else with this issue!
The text was updated successfully, but these errors were encountered: