Copy current directory in to docker image
Just add / at the end of src in ADD statement.
ADD ./* $HOME/src/
I was building the images using docker build - < Dockerfile
which apparently doen't send the build context so things can't be copied. After changing to docker build .
and adding the / like MB11 suggested the build worked.