nveloso commented on code in PR #45470:
URL: https://github.com/apache/arrow/pull/45470#discussion_r1960784901


##########
docker-compose.yml:
##########
@@ -882,6 +888,32 @@ services:
 
   ############################### Python ######################################
 
+  alpine-linux-python:
+    # Usage:
+    #   docker compose build alpine-linux-cpp
+    #   docker compose build alpine-linux-python
+    #   docker compose run --rm alpine-python
+    # Parameters:
+    #   ALPINE_LINUX: 3.18
+    #   ARCH: amd64, arm64v8, ...
+    image: ${REPO}:${ARCH}-alpine-linux-${ALPINE_LINUX}-python-3
+    build:
+      context: .
+      dockerfile: ci/docker/linux-apt-python-3.dockerfile
+      cache_from:
+        - ${REPO}:${ARCH}-alpine-linux-${ALPINE_LINUX}-python-3
+      args:
+        base: ${REPO}:${ARCH}-alpine-linux-${ALPINE_LINUX}-cpp
+    shm_size: *shm-size
+    environment:
+      <<: [ *common, *ccache ]
+    volumes: *alpine-linux-volumes
+    command: &python-command >
+      /bin/bash -c "
+        /arrow/ci/scripts/cpp_build.sh /arrow /build &&
+        /arrow/ci/scripts/python_build.sh /arrow /build &&
+        /arrow/ci/scripts/python_test.sh /arrow"
+

Review Comment:
   Yes, this is a leftover from when I was trying to add musllinux wheels. I'll 
remove this.



-- 
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]

Reply via email to