Loadgenerator :: Dockerfile :: Fix, --prefix support issue (#387)

This commit is contained in:
Ömer 2020-08-26 19:31:39 +03:00 committed by GitHub
parent c4d86703c5
commit 8ed8970136
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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