diff --git a/components/aggregator/Dockerfile b/components/aggregator/Dockerfile index aa713e0c..24686057 100644 --- a/components/aggregator/Dockerfile +++ b/components/aggregator/Dockerfile @@ -11,8 +11,8 @@ COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv # Set working directory WORKDIR /app -# Copy dependency files and README (required by hatchling) -COPY pyproject.toml README.md ./ +# Copy dependency files +COPY pyproject.toml ./ # Install git (required to fetch git-hosted dependencies) RUN apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/* diff --git a/components/backend/Dockerfile b/components/backend/Dockerfile index df4c902f..a6691648 100644 --- a/components/backend/Dockerfile +++ b/components/backend/Dockerfile @@ -34,7 +34,6 @@ FROM base AS dependencies # Copy dependency files COPY --chown=syfthub:syfthub pyproject.toml ./ -COPY --chown=syfthub:syfthub README.md ./ # Create src structure for package installation RUN mkdir -p src/syfthub && \ @@ -70,7 +69,6 @@ COPY --chown=syfthub:syfthub src src COPY --chown=syfthub:syfthub tests tests COPY --chown=syfthub:syfthub requirements.txt . COPY --chown=syfthub:syfthub uv.lock . -COPY --chown=syfthub:syfthub README.md . COPY --chown=syfthub:syfthub alembic.ini . COPY --chown=syfthub:syfthub alembic alembic @@ -105,7 +103,6 @@ COPY --chown=syfthub:syfthub src src COPY --chown=syfthub:syfthub tests tests COPY --chown=syfthub:syfthub requirements.txt . COPY --chown=syfthub:syfthub uv.lock . -COPY --chown=syfthub:syfthub README.md . COPY --chown=syfthub:syfthub alembic.ini . COPY --chown=syfthub:syfthub alembic alembic