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

This commit is contained in:
Márton Elek 2018-09-20 14:50:41 +02:00
parent 691be264be
commit 08d7a0f280
1 changed files with 2 additions and 1 deletions

View File

@ -15,7 +15,8 @@
# limitations under the License.
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 chmod +x /usr/local/bin/dumb-init
RUN mkdir -p /etc/security/keytabs && chmod -R a+wr /etc/security/keytabs