-
-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Compiling Dockerfile #54
Comments
@Hektic130 docker build -f dockerfile . However depending on the intentions of the project, it may make more sense to rename the file to |
@lgandx Is there a reason it couldn't be renamed from dockerfile to Dockerfile (titlecase)? Thank you! |
Update: @Hektic130 Best I can see there's no mention in the Docker documentation for Dockerfiles of the support for all lowercase file name (instead of titlecase, but all lowercase works). 🤷♂️😁 |
It looks like the Dockerfile is named dockerfile with a lowercase "d". Docker is case-sensitive, and it expects the file to be named exactly Dockerfile with an uppercase "D".
To fix this, you can either rename your existing Dockerfile to Dockerfile using the following command:
bash
mv dockerfile Dockerfile
The text was updated successfully, but these errors were encountered: