😶🌫️
Dockerファイルを作成したあとビルドが出来ない
エラーの概要
DockerのGuides中のGet startedを実行中に出たエラー。
3.Build the image using the following commands:
この中の
Build the image.
$ docker build -t getting-started .
を実行するとエラーメッセージが出た。
ERROR: failed to solve: failed to read dockerfile: open /var/lib/docker/tmp/buildkit-mount3320540802/Dockerfile: no such file or directory
<訳>
該当のディレクトリの中のDockerfileを開いたが、そのようなファイルはない、またはディレクトリが違う
まずはファイルの確認。
本来はファイル名がDockerfileであるべきところを、Dockerfilで作成されていた。
ファイル名をDockerfileに変更。
再度下記コマンドを実行した所OK。
$ docker build -t getting-started .
原因
ファイル名が違う
やった事
ファイル名の確認
ファイル名の変更
Discussion