Change "python3 -m pip" to "pip3"

This commit is contained in:
Romain Fauquet 2020-04-08 20:40:38 +02:00 committed by GitHub
parent c9004f1d77
commit c7d0a5a7c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,6 +77,7 @@ COPY --chown=user:user . ${SRC_DIR}
# installs buildozer and dependencies
RUN pip3 install --user wheel Cython==0.28.6 ${SRC_DIR}
RUN python3 -m pip install -U pip virtualenv
# Upgrade virtualenv and pip
RUN pip3 install -U pip virtualenv
ENTRYPOINT ["buildozer"]