X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=Dockerfile.localtest;h=02ee3615292bda6e15fe55686eb977ee644bade8;hb=8ce4f0cb5acc8af28a7ed0ff101bb2b2804cf73e;hp=3a3a7ea312dbebb331ae06bc0b67318cee85facb;hpb=1a9dcb5b8f598ee348f23eafecc2d92ef09c8122;p=pti%2Fo2.git diff --git a/Dockerfile.localtest b/Dockerfile.localtest index 3a3a7ea..02ee361 100644 --- a/Dockerfile.localtest +++ b/Dockerfile.localtest @@ -1,15 +1,17 @@ FROM python:3.10-slim-buster RUN apt-get update && apt-get install -y git gcc \ - vim curl procps + vim curl procps ssh # in case git repo is not accessable RUN mkdir -p /cgtsclient && mkdir -p /distcloud-client COPY temp/config /cgtsclient/ COPY temp/distcloud-client /distcloud-client/ +COPY temp/fault /faultclient/ RUN pip install -e cgtsclient/sysinv/cgts-client/cgts-client/ \ - && pip install -e /distcloud-client/distributedcloud-client + && pip install -e /distcloud-client/distributedcloud-client \ + && pip install -e /faultclient/python-fmclient/fmclient/ # in case git repo is not accessable COPY requirements.txt constraints.txt requirements-test.txt /tmp/