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
Running make run or make run-treehouse produces an error:
docker: invalid reference format: repository name must be lowercase.
See 'docker run --help'.
make: *** [Makefile:23: run-treehouse] Error 125
These commands worked in make v3.8 but no longer work in v4.3.
The problem is the line --user $$UID \.
This line needs to be replaced with --user $(shell id -u) \.
Running
make run
ormake run-treehouse
produces an error:These commands worked in
make
v3.8 but no longer work in v4.3.The problem is the line
--user $$UID \
.This line needs to be replaced with
--user $(shell id -u) \
.This has been fixed in branch https://github.com/UCSC-Treehouse/CARE/tree/e-t-k-patch-1 .
To clone:
git clone https://github.com/UCSC-Treehouse/CARE.git --branch e-t-k-patch-1
The text was updated successfully, but these errors were encountered: