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
30 lines
915 B
Docker
30 lines
915 B
Docker
# Test: pip install ros-mcp from git
|
|
# This Dockerfile verifies that pip installation from git works.
|
|
#
|
|
# Usage: docker build -f tests/installation/docker/Dockerfile.pip-git \
|
|
# --build-arg REPO_URL=https://github.com/robotmcp/ros-mcp-server.git \
|
|
# --build-arg BRANCH=main .
|
|
|
|
FROM python:3.10-slim
|
|
|
|
# Build arguments for git-based installation
|
|
ARG REPO_URL=https://github.com/robotmcp/ros-mcp-server.git
|
|
ARG BRANCH=main
|
|
|
|
# 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/*
|
|
|
|
# Upgrade pip to latest
|
|
RUN pip install --upgrade pip
|
|
|
|
# Install ros-mcp from git (specific branch)
|
|
RUN pip install "git+${REPO_URL}@${BRANCH}"
|
|
|
|
# Verify the installation works
|
|
RUN ros-mcp --help
|
|
|
|
# Verify the package is importable
|
|
RUN python -c "import ros_mcp; print('ros-mcp installed successfully')"
|