age-gender-estimation-tutorial icon indicating copy to clipboard operation
age-gender-estimation-tutorial copied to clipboard

Can't create docker

Open bj32161 opened this issue 6 years ago • 1 comments

Hi, I did install Docker version 18.09.7 on my Ubuntu 18.04. I did follow your instruction to install docker image as this command $docker build -t colemurray/age-gender-estimation-tutorial I got this error "docker build" requires exactly 1 argument. See 'docker build --help'. Any advice? Thank you.

bj32161 avatar Oct 31 '19 04:10 bj32161

Hello @bj32161,

I believe you are missing the directory as part of dockers build command

# CPU:
docker build -t colemurray/age-gender-estimation-tutorial .

# GPU
docker build -t colemurray/age-gender-estimation-tutorial -f Dockerfile.gpu .

Note the '.' refers to the current directory

ColeMurray avatar Nov 01 '19 02:11 ColeMurray