X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=docker%2Ftests%2FDockerfile;h=0c1de38ab55f8f92a088f1180312e9bc526c87a2;hb=917dcd96ac67e5d9be50b929eaed2662a603d4bf;hp=a2c4378a1d4416282c01a3ad09814e972f80d60f;hpb=99faf07eeb436ee1abb171c78ffbb90e24fe3807;p=osm%2Fdevops.git diff --git a/docker/tests/Dockerfile b/docker/tests/Dockerfile index a2c4378a..0c1de38a 100644 --- a/docker/tests/Dockerfile +++ b/docker/tests/Dockerfile @@ -15,24 +15,24 @@ ######################################################################## -FROM ubuntu:18.04 as INSTALL +FROM ubuntu:20.04 as FINAL RUN DEBIAN_FRONTEND=noninteractive apt-get --yes update && \ DEBIAN_FRONTEND=noninteractive apt-get --yes install \ - gcc=4:7.4.0-1ubuntu2.3 \ - python3=3.6.7-1~18.04 \ - python3-dev=3.6.7-1~18.04 \ - python3-setuptools=39.0.1-2 \ - curl=7.58.0-2ubuntu3.13 && \ - python3 -m easy_install pip==21.0.1 + gcc=4:9.3.* \ + python3=3.8.* \ + python3-dev=3.8.* \ + python3-pip=20.0.2* \ + python3-setuptools=45.2.* \ + curl=7.68.* RUN DEBIAN_FRONTEND=noninteractive apt-get --yes install \ - gettext-base \ - git=1:2.17.1-1ubuntu0.8 \ - iputils-ping=3:20161105-1ubuntu3 \ - jq=1.5+dfsg-2 \ - libcurl4-openssl-dev=7.58.0-2ubuntu3.13 \ - libssl-dev=1.1.1-1ubuntu2.1~18.04.9 + gettext-base=0.19.* \ + git=1:2.25.* \ + iputils-ping=3:* \ + jq=1.6* \ + libcurl4-openssl-dev=7.68.* \ + libssl-dev=1.1.* ARG OSM_TESTS_URL ARG PYTHON3_OSM_IM_URL @@ -77,6 +77,9 @@ ENV ROBOT_REPORT_FOLDER=/robot-systest/results # 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