Fix virtual env for python 3

This commit is contained in:
Sirfanas 2020-04-08 17:59:29 +02:00
parent cceab3c2ce
commit c9004f1d77

View file

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