Fix: Include README.md in Docker build context for pyproject.toml
All checks were successful
Build and Push Plex MCP Docker Image / build (push) Successful in 30s

This commit is contained in:
Ben
2025-12-28 05:31:14 +00:00
parent b5870a102e
commit 2ad1aff807

View File

@@ -2,8 +2,10 @@ FROM python:3.11-slim
WORKDIR /app WORKDIR /app
# Copy project metadata files
COPY pyproject.toml README.md ./
# Install dependencies # Install dependencies
COPY pyproject.toml ./
RUN pip install --no-cache-dir . RUN pip install --no-cache-dir .
# Copy application code # Copy application code