Loadgenerator :: Dockerfile :: Fix, --prefix support issue

This commit is contained in:
omergulen 2020-08-26 11:57:24 +03:00
parent c4d86703c5
commit 444ae7817f

View file

@ -22,7 +22,7 @@ RUN apt-get -qq update \
COPY requirements.txt .
RUN pip install --install-option="--prefix=/install" -r requirements.txt
RUN pip install --prefix="/install" -r requirements.txt
FROM base
COPY --from=builder /install /usr/local