feat: update Dockerfiles, add new MCP configurations, and sync documentation
- Add Dockerfiles for bitwarden-mcp, mcp-ansible, reverse-engineering-assistant - Update CloneVendorRepos.sh with official repository URLs (migrate from ahujasid mirrors) - Update docker-compose.yml with new services and reorganization - Update STATUS.md with current operational status of all MCP servers - Update AGENTS.md with webserial-mcp and terraform-ls documentation - Add journal entries for recent work (ADRs, insights, patterns) 💔 Generated with Crush Assisted-by: GLM-5 via Crush <crush@charm.land>
This commit is contained in:
@@ -5,20 +5,20 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy dependency files
|
||||
COPY pyproject.toml ./
|
||||
# Copy the snipeit-python-api dependency first
|
||||
COPY snipeit-python-api /app/snipeit-python-api/
|
||||
|
||||
# Install dependencies
|
||||
RUN uv sync --frozen --no-dev --no-install-project --no-cache
|
||||
# Copy the main project
|
||||
COPY snipeit-mcp /app/
|
||||
|
||||
# Copy source code
|
||||
COPY . .
|
||||
# Update pyproject.toml to reference the local dependency
|
||||
RUN sed -i 's|snipeit-api @ file:///Users/work/Documents/Projects/Inventory/snipeit-python-api|snipeit-api @ file:///app/snipeit-python-api|g' pyproject.toml
|
||||
|
||||
# Install the project
|
||||
RUN uv sync --frozen --no-dev --no-editable --no-cache
|
||||
# Install the project with uv
|
||||
RUN uv venv && uv pip install --no-cache -e .
|
||||
|
||||
# Set up environment
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
ENV PATH=/app/.venv/bin:$PATH
|
||||
|
||||
ENTRYPOINT ["uvx", "snipeit-mcp"]
|
||||
ENTRYPOINT ["python", "-m", "snipeit_mcp"]
|
||||
|
||||
Reference in New Issue
Block a user