본문 바로가기

웹 개발/ETC

[Docker] Unable to prepare context

Docker 이미지를 build 할 때 Context folder가 정해지지 않아, Dockerfile을 찾지 못해 발생하는 에러

 

docker build -t docker-whale .

와 같이 .(현재 경로) 등의 Context folder를 정해줘야 함.

 

참고: 

stackoverflow.com/questions/35511604/docker-unable-to-prepare-context-unable-to-evaluate-symlinks-in-dockerfile-pat?page=1&tab=votes#tab-top

 

Docker: unable to prepare context: unable to evaluate symlinks in Dockerfile path: GetFileAttributesEx

I just downloaded Docker Toolbox for Windows 10 64bit today. I'm going through the tutorial. I'm receving the following error when trying to build an image using a Dockerfile. Steps: Launched D...

stackoverflow.com