Copilot commented on code in PR #13659: URL: https://github.com/apache/skywalking/pull/13659#discussion_r2688783646
########## test/e2e-v2/cases/python/Dockerfile.python: ########## @@ -22,7 +22,13 @@ RUN git clone https://github.com/apache/skywalking-python.git $(pwd) RUN git reset --hard ${SW_AGENT_PYTHON_COMMIT} && git submodule update --init -RUN make setup install +RUN <<EOT + pip install --upgrade pip + pip install poetry + + make install +EOT + Review Comment: The heredoc syntax (<<EOT) may not be supported in older Docker versions. Consider using a more compatible approach with && chaining if broader Docker version compatibility is needed. ```suggestion RUN pip install --upgrade pip && pip install poetry && make install ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
