Files
wehub-resource-sync db1d565b64
Integration Tests / melodic (push) Has been cancelled
Integration Tests / noetic (push) Has been cancelled
Integration Tests / humble (push) Has been cancelled
Integration Tests / jazzy (push) Has been cancelled
Ruff Lint & Format / ruff (push) Has been cancelled
Sync main to develop / Check if sync is needed (push) Has been cancelled
Sync main to develop / Sync main to develop (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:36:23 +08:00

28 lines
798 B
Docker

# Test: pip install ros-mcp from source (git clone + pip install .)
# This Dockerfile verifies that installation from cloned repository works.
#
# Usage: docker build -f tests/installation/docker/Dockerfile.pip-source .
FROM python:3.10-slim
# Install git and OpenCV dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
git libgl1 libglib2.0-0 && \
rm -rf /var/lib/apt/lists/*
# Copy the repository (build context should be repo root)
COPY . /ros-mcp-server
WORKDIR /ros-mcp-server
# Upgrade pip
RUN pip install --upgrade pip
# Install from source (as documented for development)
RUN pip install .
# Verify the installation works
RUN ros-mcp --help
# Verify the package is importable
RUN python -c "import ros_mcp; print('ros-mcp installed successfully')"