İkbal
İkbal

Reputation: 3

Add RobotFramework to Ubuntu:16.04

enter image description hereI want to download robotframework in ubuntu for dockerfile but i didn't found. What can i do?

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] 

enter image description here

Upvotes: 0

Views: 132

Answers (1)

Helio
Helio

Reputation: 3737

You are having problems with the versions you are requesting. pip for example is failing to install. Also python3.6 is an old version. You should update your Dockerfile to use Ubuntu LTS, which is currently in version 22.0.4.

Upvotes: 1

Related Questions