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
In every line in the Makefile where $(PWD) ist used you have to change it to $(CURDIR). This is a make specific env-var which gives the current directory to the script. $(PWD) refers to a created var which holds a command only working in linux/unix shells.
It would be better to use $(CURDIR) in every scripts, instead of export PWD="pwd"
For the dockerfile problem I only have the solution to comment out lines 14-16. This is not needed in windows environment, because docker desktop manages the file-permissions when bind-mounting a local directory.
pwd
command is missing-u
option cases a problem indocker/Dockerfile
The text was updated successfully, but these errors were encountered: