Workaround for pip bug #6179

See https://github.com/pypa/pip/issues/6197
This commit is contained in:
Manoel Brunnen
2019-02-04 11:24:56 +01:00
parent 5c9ff90d28
commit c4b9ae596e
+2 -2
View File
@@ -131,11 +131,11 @@ COPY --from=BUILDER_IMAGE /code/docker/version .
RUN chown -R mayan:mayan $PROJECT_INSTALL_DIR RUN chown -R mayan:mayan $PROJECT_INSTALL_DIR
# Install build Mayan EDMS # Install build Mayan EDMS
RUN sudo -u mayan $PYTHON_PIP install --no-cache-dir *.whl && \ RUN sudo -u mayan $PYTHON_PIP install --no-cache-dir --no-use-pep517 *.whl && \
rm *.whl rm *.whl
# Install Python clients for librabbitmq, MySQL, PostgreSQL, REDIS # Install Python clients for librabbitmq, MySQL, PostgreSQL, REDIS
RUN sudo -u mayan $PYTHON_PIP install --no-cache-dir librabbitmq==1.6.1 mysql-python==1.2.5 psycopg2==2.7.3.2 redis==2.10.6 RUN sudo -u mayan $PYTHON_PIP install --no-cache-dir --no-use-pep517 librabbitmq==1.6.1 mysql-python==1.2.5 psycopg2==2.7.3.2 redis==2.10.6
# Setup supervisor # Setup supervisor
COPY docker/etc/supervisor/mayan.conf /etc/supervisor/conf.d COPY docker/etc/supervisor/mayan.conf /etc/supervisor/conf.d