Add subscription and notification for resource changes; fix a bug while pserver node...
[pti/o2.git] / mock_smo / 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 COPY requirements.txt /tmp/\r
6 RUN  pip install -r /tmp/requirements.txt \r
7 \r
8 # COPY requirements-test.txt /tmp/\r
9 # RUN pip install -r /tmp/requirements-test.txt\r
10 \r
11 RUN mkdir -p /src\r
12 COPY mock_smo/ /src/mock_smo/\r
13 \r
14 COPY setup.py o2app-mock-smo.sh /src/\r
15 RUN pip install -e /src\r
16 \r
17 COPY etc/ /etc/mock_smo/\r
18 \r
19 # COPY tests/ /tests/\r
20 \r
21 # RUN apt-get install -y procps vim\r
22 \r
23 WORKDIR /src\r