Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions doc/source/development/contributing_environment.rst
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,16 @@ Build the Docker image::
# Build the image
docker build -t pandas-dev .


**Platform Specification**

If you encounter compatibility issues during the build process (especially on Apple Silicon Macs), specify the target platform::

# Highlight your platform in the docker build command for better compatibility
docker build --platform=linux/amd64 -t pandas-dev .

The --platform flag makes the build to use the specified architecture (in this case x86_64), which provides better platform compatibility.

Run Container::

# Run a container and bind your local repo to the container
Expand Down
Loading