Refactor watchers
[pti/o2.git] / Dockerfile
1 FROM python:3.10-slim-buster\r
2 \r
3 RUN apt-get update; apt-get install -y git gcc\r
4 \r
5 # in case git repo is not accessable\r
6 # RUN mkdir -p /cgtsclient\r
7 # COPY temp/config /cgtsclient/\r
8 RUN git clone https://opendev.org/starlingx/config.git /cgtsclient\r
9 RUN pip install -e /cgtsclient/sysinv/cgts-client/cgts-client/\r
10 \r
11 # RUN mkdir -p /distcloud-client\r
12 # COPY temp/distcloud-client /distcloud-client/\r
13 RUN git clone https://opendev.org/starlingx/distcloud-client.git /distcloud-client/\r
14 RUN pip install -e /distcloud-client/distributedcloud-client\r
15 # in case git repo is not accessable\r
16 \r
17 \r
18 COPY requirements.txt /tmp/\r
19 COPY requirements-stx.txt /tmp/\r
20 COPY constraints.txt /tmp/\r
21 \r
22 RUN  pip install -r /tmp/requirements.txt -c /tmp/constraints.txt\r
23 \r
24 # RUN  pip install -r /tmp/requirements-stx.txt\r
25 \r
26 COPY requirements-test.txt /tmp/\r
27 RUN pip install -r /tmp/requirements-test.txt\r
28 \r
29 \r
30 RUN mkdir -p /src\r
31 COPY o2ims/ /src/o2ims/\r
32 COPY o2dms/ /src/o2dms/\r
33 COPY o2common/ /src/o2common/\r
34 COPY setup.py /src/\r
35 \r
36 RUN pip install -e /src\r
37 \r
38 COPY tests/ /tests/\r
39 \r
40 RUN apt-get install -y procps vim\r
41 \r
42 WORKDIR /src\r