tree: 2e4ce7ff6660a62af0659264c165a2a4a276dec9 [path history] [tgz]
  1. build_conda.sh
  2. build_venv.sh
  3. docker-compose.yml
  4. Dockerfile.fedora
  5. Dockerfile.ubuntu
  6. README.md
python/examples/minimal_build/README.md

Minimal Python source build on Linux

This directory shows how to bootstrap a local build from source on Linux with an eye toward maximum portability across different Linux distributions. This may help for contributors debugging build issues caused by their local environments.

Fedora 35

First, build the Docker image using:

docker build -t arrow_fedora_minimal -f Dockerfile.fedora .

Then build PyArrow with conda or pip, respectively:

# With pip
docker run --rm -t -i -v $PWD:/io -v $PWD/../../..:/arrow arrow_fedora_minimal /io/build_venv.sh

# With conda
docker run --rm -t -i -v $PWD:/io -v $PWD/../../..:/arrow arrow_fedora_minimal /io/build_conda.sh

Alternatively you can use Docker Compose to build and run using:

docker-compose build

# With conda
docker-compose run --rm minimal-fedora-conda

# With pip
docker-compose run --rm minimal-fedora-venv

Ubuntu 20.04

First, build the Docker image using:

docker build -t arrow_ubuntu_minimal -f Dockerfile.ubuntu .

Then build PyArrow with conda or pip, respectively:

# With pip
docker run --rm -t -i -v $PWD:/io -v $PWD/../../..:/arrow arrow_ubuntu_minimal /io/build_venv.sh

# With conda
docker run --rm -t -i -v $PWD:/io -v $PWD/../../..:/arrow arrow_ubuntu_minimal /io/build_conda.sh

Alternatively you can use Docker Compose to build and run using:

docker-compose build

# With conda
docker-compose run --rm minimal-ubuntu-conda

# With pip
docker-compose run --rm minimal-ubuntu-venv

Building on Fedora - Podman and SELinux

In addition to using Podman instead of Docker, you need to specify :Z for SELinux relabelling when binding a volume.

First, build the image using:

podman build -t arrow_fedora_minimal -f Dockerfile.fedora

Then build PyArrow with pip:

# With pip
podman run --rm -i -v $PWD:/io:Z -v $PWD/../../..:/arrow:Z -t arrow_fedora_minimal /io/build_venv.sh