问题描述
今天在构建镜像文件时 报错 unable prepare context:unable to evaluate symlinks in Dockerfile path:lstat 根据提示是说 找不到当前我们要构建的 文件。
[root@weihu mydocker]# docker build -t centosjava8:1.8 .
unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /myfile/Dockerfile: no such file or directory
原因分析:
一般出现这种提示都是没有在我们需要构建 镜像文件的根目录下面执行的命令,所以返回报错信息。
解决方案:
我们可以指定 需要构建的dockerfile文件的绝对路径即可。
命令行参数
-f,–file
指定 dockerfile 路径
docker build -f /path/to/a/Dockerfile .
不指定的话,默认会读取上下文路径( . )下的 dockerfile
-t,–tag
指定构建的镜像名和 tag
docker build -t ubuntu-nginx:v1 .
例如:
我需要构建的镜像路径为 /myfile/Dockerfile,指定构建镜像名称为 coentosjava81.5.7
可以这样输入命令行文章来源:https://www.toymoban.com/news/detail-432711.html
注意:上面TAG后面有个点 . 千万不漏了!!!!!!!!!!!!文章来源地址https://www.toymoban.com/news/detail-432711.html
docker build -f /myfile/Dockerfile -t coentosjava81.5.7 .
到了这里,关于unable prepare context:unable to evaluate symlinks in Dockerfile path:lstat /XXXXXX的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!