loretoparisi / docker

My Docker scripts and Dockerfile for several frameworks.
MIT License
92 stars 64 forks source link

Docker Build help #8

Closed ozaparth2803 closed 6 years ago

ozaparth2803 commented 6 years ago

When I run

docker build -t darknet it says "docker build required exactly one argument"

How do I resolve this?

loretoparisi commented 6 years ago

@ozaparth2803 the correct command was

docker build -t darknet .

to specify that you run the command in the current folder where is the Dockerfile you are using to build that image.