Docs: F release docs update
[pti/o2.git] / Dockerfile
1 FROM python:3.10-slim-buster
2
3 RUN apt-get update && apt-get install -y git gcc procps vim curl
4
5 # in case git repo is not accessable
6 # RUN mkdir -p /cgtsclient
7 # COPY temp/config /cgtsclient/
8 RUN git clone --depth 1 --branch master https://opendev.org/starlingx/config.git /cgtsclient
9 RUN pip install -e /cgtsclient/sysinv/cgts-client/cgts-client/
10
11 # RUN mkdir -p /distcloud-client
12 # COPY temp/distcloud-client /distcloud-client/
13 RUN git clone --depth 1 --branch master https://opendev.org/starlingx/distcloud-client.git /distcloud-client/
14 RUN pip install -e /distcloud-client/distributedcloud-client
15 # in case git repo is not accessable
16
17 # RUN git clone --depth 1 --branch master https://github.com/cloudify-incubator/cloudify-helm-plugin.git /helmsdk
18
19
20 COPY requirements.txt /tmp/
21 COPY requirements-stx.txt /tmp/
22 COPY constraints.txt /tmp/
23
24 RUN  pip install -r /tmp/requirements.txt -c /tmp/constraints.txt
25
26 # RUN  pip install -r /tmp/requirements-stx.txt
27
28 COPY requirements-test.txt /tmp/
29 RUN pip install -r /tmp/requirements-test.txt
30
31
32 RUN mkdir -p /src
33 COPY o2ims/ /src/o2ims/
34 COPY o2dms/ /src/o2dms/
35 COPY o2common/ /src/o2common/
36
37 RUN mkdir -p /src/o2app/
38 COPY o2app/ /src/o2app/
39 COPY setup.py /src/
40
41 RUN pip install -e /src
42
43 COPY configs/ /etc/o2/
44
45 COPY tests/ /tests/
46
47 RUN curl -O https://get.helm.sh/helm-v3.3.1-linux-amd64.tar.gz;
48 RUN tar -zxvf helm-v3.3.1-linux-amd64.tar.gz; cp linux-amd64/helm /usr/local/bin
49
50 WORKDIR /src