I am trying to bring a github repo into my Google Colab workspace via the following code:
!git clone https://github.com/vanvalenlab/deepcell-tf.git
!cd deepcell-tf
!docker build -t $USER/deepcell-tf .
I have followed Google Colab's steps for install Docker (https://colab.research.google.com/drive/10OinT5ZNGtdLLQ9K399jlKgNgidxUbGP).
But when I run the above code, I get the following error:
invalid argument "/deepcell-tf" for "-t, --tag" flag: invalid reference format
See 'docker build --help'.
"-t" is a valid argument to pass according to the documentation. Why does it think I'm passing /deepcell-tf as an argument?