Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/aggregator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
3 changes: 0 additions & 3 deletions components/backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down Expand Up @@ -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

Expand Down Expand Up @@ -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

Expand Down
Loading