This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push:
new 7553147046 fix: python docker build (#13663)
7553147046 is described below
commit 755314704696a1939b251943d520c394821d7c2f
Author: kezhenxu94 <[email protected]>
AuthorDate: Tue Jan 13 16:42:59 2026 +0800
fix: python docker build (#13663)
---
test/e2e-v2/cases/browser/docker/Dockerfile.generate-traffic | 2 +-
test/e2e-v2/cases/browser/docker/Dockerfile.provider | 9 +++++++--
test/e2e-v2/cases/python/Dockerfile.python | 2 +-
3 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/test/e2e-v2/cases/browser/docker/Dockerfile.generate-traffic
b/test/e2e-v2/cases/browser/docker/Dockerfile.generate-traffic
index 9120904605..0f681c2f2b 100644
--- a/test/e2e-v2/cases/browser/docker/Dockerfile.generate-traffic
+++ b/test/e2e-v2/cases/browser/docker/Dockerfile.generate-traffic
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM python:3.7
+FROM python:3.10
COPY docker/test.py .
diff --git a/test/e2e-v2/cases/browser/docker/Dockerfile.provider
b/test/e2e-v2/cases/browser/docker/Dockerfile.provider
index 085f8c55af..3985ed9196 100644
--- a/test/e2e-v2/cases/browser/docker/Dockerfile.provider
+++ b/test/e2e-v2/cases/browser/docker/Dockerfile.provider
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM python:3.7
+FROM python:3.10
ARG SW_AGENT_PYTHON_COMMIT
WORKDIR /app
@@ -22,4 +22,9 @@ 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
diff --git a/test/e2e-v2/cases/python/Dockerfile.python
b/test/e2e-v2/cases/python/Dockerfile.python
index 95cba8aa03..1b31a1df62 100644
--- a/test/e2e-v2/cases/python/Dockerfile.python
+++ b/test/e2e-v2/cases/python/Dockerfile.python
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-FROM python:3.7
+FROM python:3.10
ARG SW_AGENT_PYTHON_COMMIT
WORKDIR /app