1 2 3 4 5 6 7 8 9 10 11
FROM python:3.10.13 COPY requirements.txt /tmp/requirements.txt RUN pip install -r /tmp/requirements.txt COPY . /app WORKDIR /app RUN pip install -e . CMD ["python", "perf_test/main.py"]