前提・実現したいこと
dockerfileをイメージ化する為に「docker build」コマンドを実行したところ下記のエラーが発生しています。
理由と解決方法をお教え頂きたいです。
・入力したコマンド
⇒C:\Users\ArataniRyosuke\dockerfile>docker build -t test run
発生している問題・エラーメッセージ
unable to prepare context: unable to evaluate symlinks in Dockerfile path: CreateFile C:\Users\ArataniRyosuke\dockerfile\run\Dockerfile: The system cannot find the file specified.
該当のソースコード
dockerfile/run/Dockerfile FROM ubuntu:20.04 RUN apt-get update -y && \ apt-get install -y nginx CMD ["nginx", "-g", "daemon off;"]
試したこと
カレントディレクトリは「dockerfile」フォルダから実行しています
恐らくパスが通っていないのかなと思いいくつか試してみましたが何れも結果は変わりませんでした。
例:docker build -t .
docker build -t test -f ../Dockerfile .
あなたの回答
tips
プレビュー