Browse Source

HDDS-511. Update DockerFile to install robot framework and python-pip. Contributed by Dinesh Chitlangia.

Márton Elek 6 years ago
parent
commit
08d7a0f280
1 changed files with 2 additions and 1 deletions
  1. 2 1
      Dockerfile

+ 2 - 1
Dockerfile

@@ -15,7 +15,8 @@
 # limitations under the License.
 # limitations under the License.
 
 
 FROM openjdk:8-jdk
 FROM openjdk:8-jdk
-RUN apt-get update && apt-get install -y jq curl python sudo && apt-get clean
+RUN apt-get update && apt-get install -y jq curl python python-pip sudo && apt-get clean
+RUN pip install robotframework
 RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64
 RUN wget -O /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64
 RUN chmod +x /usr/local/bin/dumb-init
 RUN chmod +x /usr/local/bin/dumb-init
 RUN mkdir -p /etc/security/keytabs && chmod -R a+wr /etc/security/keytabs 
 RUN mkdir -p /etc/security/keytabs && chmod -R a+wr /etc/security/keytabs