如何在docker文件中运行`git clone`?

时间:2018-08-14 23:45:49

标签: docker dockerfile

我在docker文件中指定了一个git clone命令,如下所示。

RUN git clone https://github.com/zhaoyi0113/test.git

但是在构建docker映像时出现了此错误:

Cloning into 'test'...
fatal: could not read Username for 'https://github.com': No such device or address

我想知道为什么它不起作用。我可以在主机上运行此命令。如果我在docker文件中列出它,有什么不同吗?

2 个答案:

答案 0 :(得分:4)

您可以将凭据作为参数传递给容器。这应该起作用

FROM alpine:3.8

RUN apk update && apk upgrade && \
    apk add --no-cache bash git openssh

ARG username
ARG password

RUN git clone https://${username}:${password}@github.com/username/repository.git

ENTRYPOINT ["sleep 10"]

但是如果您要分发该图像可能不安全

然后建立

docker build \
    --no-cache \
    -t git-app:latest \
    --build-arg username=user \
    --build-arg password=qwerty \
    .

答案 1 :(得分:0)

我知道这个问题出了什么问题。问题是因为我正在克隆的存储库是私有存储库,这意味着它需要凭据才能连接到github。通过将凭据传递到容器来对其进行修复。