Merge pull request #1053 from Sirfanas/fix-venv-python3

[Python3] #1052 ImportError: cannot import name 'main'
This commit is contained in:
Andre Miras 2020-04-08 21:15:13 +02:00 committed by GitHub
commit 916dc6ba2a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,6 +75,6 @@ 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 --upgrade Cython==0.28.6 wheel pip virtualenv ${SRC_DIR}
ENTRYPOINT ["buildozer"]