gpt4 book ai didi

git - docker 中的 ssh-add - 无法打开与您的身份验证代理的连接

转载 作者:行者123 更新时间:2023-12-02 13:46:02 25 4
gpt4 key购买 nike

我正在尝试为我的 Python Flask API 创建一个 docker 镜像。

我需要 git 来安装依赖项,而且我已经在 docker 中安装了几次 git。但在这里,我无法理解我做错了什么。

与 docker :

FROM python:3.6-slim

ARG ssh_prv_key
ARG ssh_pub_key

RUN apt-get update && \
apt-get install -y openssh-server &&\
apt-get install -y git

# Authorize SSH Host
RUN mkdir -p /root/.ssh && \
chmod 0700 /root/.ssh && \
ssh-keyscan github.com > /root/.ssh/known_hosts

# Add the keys and set permissions
RUN echo "$ssh_prv_key" > /root/.ssh/id_rsa && \
echo "$ssh_pub_key" > /root/.ssh/id_rsa.pub && \
chmod 600 /root/.ssh/id_rsa && \
chmod 600 /root/.ssh/id_rsa.pub && \
echo "StrictHostKeyChecking no " > /root/.ssh/config


RUN eval "$(ssh-agent -s)"
RUN ssh-add /root/.ssh/id_rsa

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY requirements.txt /usr/src/app/
RUN pip3 install --no-cache-dir -r requirements.txt

# Remove SSH keys
RUN rm -rf /root/.ssh/

COPY ./my_api /usr/src/app

# Expose the Flask port
EXPOSE 5000

CMD [ "python", "./app.py" ]

我执行命令:
docker build --build-arg ssh_prv_key=.keys/id_rsa --build-arg ssh_pub_key=.keys/id_rsa.pub -t my-api -f Dockerfile . 

这给了我以下错误:
Step 7/16 : RUN eval "$(ssh-agent -s)"
---> Running in be450cc39533
Agent pid 9
Removing intermediate container be450cc39533
---> fb101226dc5f
Step 8/16 : RUN ssh-add /root/.ssh/id_rsa
---> Running in 4288e93db584
Could not open a connection to your authentication agent.
The command '/bin/sh -c ssh-add /root/.ssh/id_rsa' returned a non-zero code: 2

PID 由 检索评估 ssh-agent 的功能,但我无法连接到它。

已解决

我终于发现我做错了什么。首先,我的构建参数不正确。正确的 docker build 命令如下:
docker build --build-arg ssh_prv_key="$(cat .keys/id_rsa)" --build-arg ssh_pub_key="$(cat .keys/id_rsa.pub)" -t my-api -f Dockerfile . 

另外,我不知道为什么,git 正确处理我的 ssh key 而不使用
RUN eval "$(ssh-agent -s)"
RUN ssh-add /root/.ssh/id_rsa

上述命令导致无法连接到您的代理错误。

然后,正确的文件是
FROM python:3.6-slim

ARG ssh_prv_key
ARG ssh_pub_key

RUN apt-get update && \
apt-get install -y git

# Authorize SSH Host
RUN mkdir -p /root/.ssh && \
chmod 0700 /root/.ssh && \
ssh-keyscan github.com > /root/.ssh/known_hosts

# Add the keys and set permissions
RUN echo "$ssh_prv_key" > /root/.ssh/id_rsa && \
echo "$ssh_pub_key" > /root/.ssh/id_rsa.pub && \
chmod 600 /root/.ssh/id_rsa && \
chmod 600 /root/.ssh/id_rsa.pub


RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY requirements.txt /usr/src/app/
RUN pip3 install --no-cache-dir -r requirements.txt

# Remove SSH keys
RUN rm -rf /root/.ssh/

COPY ./my_api /usr/src/app

# Expose the Flask port
EXPOSE 5000

CMD [ "python", "./app.py" ]

最佳答案

我相信与容器中的 ssh 配置相关的问题,Ubuntu 中的默认 ssh 策略是拒绝 root 远程登录。

要启用它,请将以下行添加到您的 Dockerfile。

RUN echo "PermitRootLogin yes" >> /etc/ssh/sshd_config



此行编辑/etc/ssh/sshd_config 文件以允许 root 登录,但您需要重新启动 sshd 服务,为此,您还必须在 Dockerfile 中添加以下行。

RUN systemctl restart sshd



此外,如果您信任该证书,只需将 -K 标志添加到 ssh-add。

RUN ssh-add -k /root/.ssh/id_rsa



-k 选项用于将 key 加载到代理中或从代理中删除 key 时,仅处理普通私钥并跳过证书。

我希望这会有所帮助。
此致,

关于git - docker 中的 ssh-add - 无法打开与您的身份验证代理的连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53646785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com