Add framework and apiserver
[pti/o2.git] / Dockerfile
1 FROM python:3.10-slim-buster\r
2 \r
3 COPY requirements.txt /tmp/\r
4 RUN pip install -r /tmp/requirements.txt\r
5 \r
6 COPY requirements-test.txt /tmp/\r
7 RUN pip install -r /tmp/requirements-test.txt\r
8 \r
9 RUN mkdir -p /src\r
10 COPY src/ /src/\r
11 RUN pip install -e /src\r
12 \r
13 COPY tests/ /tests/\r
14 \r
15 WORKDIR /src\r