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
If you see the following error when building a dockerfile:
sh: 1: Bad substitution
It's likely caused by your dockerfile running sh and not bash which doesn't support variables with v. such as the version of AWS OFI NCCL:
sh
bash
v.
awsome-distributed-training/3.test_cases/1.megatron-lm/0.distributed-training.Dockerfile
Line 71 in 9fc4e12
The solution is to set the shell in your Dockerfile:
SHELL ["/bin/bash", "-c"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you see the following error when building a dockerfile:
It's likely caused by your dockerfile running
sh
and notbash
which doesn't support variables withv.
such as the version of AWS OFI NCCL:awsome-distributed-training/3.test_cases/1.megatron-lm/0.distributed-training.Dockerfile
Line 71 in 9fc4e12
The solution is to set the shell in your Dockerfile:
The text was updated successfully, but these errors were encountered: