This is an automated email from the ASF dual-hosted git repository.

ka94 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 94e1b367d fix: Fixed broken /app reference in Dockerfile (#4781)
94e1b367d is described below

commit 94e1b367d4ceaa46fd3bd764e6c6923a32e25e1d
Author: Keon Amini <[email protected]>
AuthorDate: Sun Mar 26 23:32:39 2023 -0500

    fix: Fixed broken /app reference in Dockerfile (#4781)
---
 backend/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/backend/Dockerfile b/backend/Dockerfile
index 4e9f64829..2e90ad574 100644
--- a/backend/Dockerfile
+++ b/backend/Dockerfile
@@ -143,7 +143,7 @@ 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 {} && \
+RUN find /app/python/ -name "*.sh" | xargs -I{} chmod +x {} && \
     /app/python/build.sh
 
 

Reply via email to