使用Dockerfile安装git报错: E:unable to locate package git
dockerfile内容FROM ubuntuMAINTAINER "katy"RUN apt-get install -y gitENTRYPOINT ["git"]当执行下面命令的时候报错:E:unable to locate package gitdocker build -f Dockerfile -t ubuntu-git:auto .百度了下才知道是由于...
·
dockerfile内容
FROM ubuntu
MAINTAINER "katy"
RUN apt-get install -y git
ENTRYPOINT ["git"]
当执行下面命令的时候报错:E:unable to locate package git
docker build -f Dockerfile -t ubuntu-git:auto .
百度了下才知道是由于找不到git安装包,需要执行以下命令:
apt-get update
最后完整的Dockerfile
FROM ubuntu
MAINTAINER "katy"
RUN apt-get update && apt-get install -y git
ENTRYPOINT ["git"]
更多推荐
已为社区贡献9条内容
所有评论(0)