在这里输入图像描述我想在ubuntu中下载robotframework,但是我没有找到。我能做什么?
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install software-properties-common -y
RUN add-apt-repository --yes ppa:ansible/ansible-2.10
RUN apt-get install ansible -y
RUN add-apt-repository -y ppa:jblgf0/python
RUN apt-get update
RUN apt-get install python3.6 -y
RUN apt-get install python-requests -y
RUN apt-get install python-pip -y
RUN pip install --upgrade pip
RUN pip install robotframework
RUN pip install --upgrade robotframework-sshlibrary
ENTRYPOINT [/bin/bash] 发布于 2022-11-15 15:59:22
您请求的版本有问题。例如,pip未能安装。此外,python3.6也是一个旧版本。您应该更新您的Dockerfile以使用Ubuntu,该版本目前位于22.0.4版。
https://stackoverflow.com/questions/74447146
复制相似问题