So I have been working with the Docker documentation: http://docs.docker.com/engine/reference/builder/#add , but I am still getting an error somehow, I wish to move my local directory go to the directory in docker: /user/local/
I used the below command for this purpose :
ADD go /usr/local/
which didn't work, so I tried the below command :
ADD /go/ /usr/local/
That also didn't run, I tried using the chmod command as given:
RUN chmod 0755 /usr/local/go/src/make.bash
I still keep getting an error [ /usr/local/go/src/make.bash: No such file or directory but the local go directory does contain make.bash. ]
Can someone help me out?