You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Windows][WSL] no such file or directory 'tmp.Dockerfile'
Description:
If you are openning a project that are saved inside of your WSL system, you are encontured a problem regarding the file path separator.
In this case, for VS Code the file path separator is '' and you are using a '/' hardcoded. That's the reason for your extension throw an error
after try to create a temporary Dockerfile named 'tmp.Dockerfile'.
You can find that issue under the following file:
dockerfile-utils/src/buildContainer.ts (line 20)
Solutions:
[1] Search and Parse from current Path of the Dockerfile for the file path separator
[2] Using system env variables to get file path separator according your operator system
[3] Combination of the two options above to get the better solution
You can find in attachment the screenshot of the error that have been happened
Please, let me know if you need anything else!
Any way, according that you are showing, it's a very nice extension and useful.
Thank you
Pedro Vieira (Software Engineer)
The text was updated successfully, but these errors were encountered:
[Windows][WSL] no such file or directory 'tmp.Dockerfile'
Description:
If you are openning a project that are saved inside of your WSL system, you are encontured a problem regarding the file path separator.
In this case, for VS Code the file path separator is '' and you are using a '/' hardcoded. That's the reason for your extension throw an error
after try to create a temporary Dockerfile named 'tmp.Dockerfile'.
You can find that issue under the following file:
Solutions:
[1] Search and Parse from current Path of the Dockerfile for the file path separator
[2] Using system env variables to get file path separator according your operator system
[3] Combination of the two options above to get the better solution
You can find in attachment the screenshot of the error that have been happened
Please, let me know if you need anything else!
Any way, according that you are showing, it's a very nice extension and useful.
Thank you
Pedro Vieira (Software Engineer)
The text was updated successfully, but these errors were encountered: