eclipse-cdt-cloud / cdt-cloud-blueprint

CDT Cloud Blueprint is a template for building custom web-based C/C++ tools. It is made up of existing open source components and can be easily downloaded and installed on all major operating system platforms.
MIT License
22 stars 11 forks source link

Dockerfile not found at docker build #71

Closed JohanHardy closed 7 months ago

JohanHardy commented 9 months ago

Bug Description: The root Dockerfile collides with the dockerfile folder under windows. At docker build -t, the dockerfile is not found. Workaround is to build within WSL.

Steps to Reproduce:

  1. Using docker desktop for windows
  2. go to the repo location
  3. execute the documented docker build

Additional Information

sdirix commented 8 months ago

Thanks for the report. We'll take a look at this, should be relatively straightforward to rename the directory.

sgraband commented 7 months ago

The issue is that on Windows the path <repo>/Dockerfile (file in root) and <repo>/dockerfile (folder in root) are treated the same. Hence when copying or cloning the project the dockerfile folder is not created.

I will provide a PR where i rename everything accordingly and update the documentation.