Fix docker build by using correct pip flags (#417)

This commit is contained in:
Abhinav Singh 2020-08-09 21:36:11 +05:30 committed by GitHub
parent 4482838c70
commit fe2b9a0c82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ COPY README.md /app/
COPY proxy/ /app/proxy/
WORKDIR /app
RUN pip install --upgrade pip && \
pip install --install-option="--prefix=/deps" .
pip install --prefix=/deps .
FROM base