X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2FDockerfile;h=b3b786066fa02a504f1a479cbda8c7905107cafc;hb=f25782945b1e3db0a2442c572a5f8607bb42460e;hp=7e0bbce5d516a7c0898976145b5405a46740a018;hpb=82f05de6c5c3abc018bd4a9639bbecf9dc2c2847;p=osm%2Ftests.git diff --git a/docker/Dockerfile b/docker/Dockerfile index 7e0bbce..b3b7860 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -19,13 +19,16 @@ FROM ubuntu:18.04 # Installing robot dependencies RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y install git software-properties-common \ - make python3 debhelper python3-setuptools python3-pip apt-utils ssh iputils-ping libcurl4-openssl-dev libssl-dev \ - python3-openstackclient + make python3 debhelper python3-pip apt-utils ssh iputils-ping libcurl4-openssl-dev libssl-dev cargo rustc -RUN add-apt-repository -y ppa:rmescandon/yq && apt update && apt install yq -y +RUN add-apt-repository -y ppa:rmescandon/yq && apt update && apt install yq -y -RUN python3 -m pip install haikunator requests robotframework robotframework-seleniumlibrary robotframework-requests robotframework-jsonlibrary \ - robotframework-sshlibrary charm-tools git+https://osm.etsi.org/gerrit/osm/IM.git git+https://osm.etsi.org/gerrit/osm/osmclient.git +RUN python3 -m pip install -U pip + +RUN python3 -m pip install charm-tools haikunator python-openstackclient requests robotframework \ + robotframework-seleniumlibrary robotframework-requests robotframework-jsonlibrary robotframework-sshlibrary \ + setuptools setuptools-rust git+https://osm.etsi.org/gerrit/osm/IM.git \ + git+https://osm.etsi.org/gerrit/osm/osmclient.git # Preparing working environment WORKDIR /robot-systest @@ -53,6 +56,9 @@ ENV ROBOT_REPORT_FOLDER=/robot-systest/reports # Kubeconfig file ENV K8S_CREDENTIALS=/root/.kube/config +# OSM RSA file +ENV OSM_RSA_FILE=/root/osm_id_rsa + ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8