This is an automated email from the ASF dual-hosted git repository.
zhangliang2022 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new 14f6468cc fix: python build error in dockerfile (#5015)
14f6468cc is described below
commit 14f6468ccf2b182b570d197e9cd6e4ed97ea800c
Author: abeizn <[email protected]>
AuthorDate: Mon Apr 24 14:27:52 2023 +0800
fix: python build error in dockerfile (#5015)
---
backend/Dockerfile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/backend/Dockerfile b/backend/Dockerfile
index ccae398a4..f388457a9 100644
--- a/backend/Dockerfile
+++ b/backend/Dockerfile
@@ -142,8 +142,8 @@ RUN python3 -m pip install --no-cache --upgrade pip
setuptools && \
RUN curl -sSL https://install.python-poetry.org | python3 -
RUN ln -sf /root/.local/bin/poetry /usr/local/bin
# Build Python plugins
-RUN find /app/python/ -name "*.sh" | xargs -I{} chmod +x {} && \
- /app/python/build.sh
+RUN find /app/python/ -name "*.sh" | xargs -I{} chmod +x {}
+RUN /app/python/build.sh
FROM base as devlake-base