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
Our Dockerfile for Chapel does not include a CMD nor an ENTRYPOINT. From the Docker docs: https://docs.docker.com/reference/dockerfile/#understand-how-cmd-and-entrypoint-interact
CMD
ENTRYPOINT
Dockerfile should specify at least one of CMD or ENTRYPOINT commands. No CMD and no ENTRYPOINT is an error, and is not allowed.
How does our Docker image build successfully then? We inherit the default CMD command from the debian 11 image which we use as our base.
We should not rely on this behavior from debian, and instead should add a line to our Dockerfile that says
CMD ["/bin/bash"]
The text was updated successfully, but these errors were encountered:
Hi, may I take this up?
Sorry, something went wrong.
madhav-madhusoodanan
No branches or pull requests
Summary of Problem
Our Dockerfile for Chapel does not include a
CMD
nor anENTRYPOINT
.From the Docker docs: https://docs.docker.com/reference/dockerfile/#understand-how-cmd-and-entrypoint-interact
How does our Docker image build successfully then?
We inherit the default
CMD
command from the debian 11 image which we use as our base.We should not rely on this behavior from debian, and instead should add a line to our Dockerfile that says
The text was updated successfully, but these errors were encountered: