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
6 changes: 6 additions & 0 deletions services/api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ ENV PYTHONDONTWRITEBYTECODE=1 \

WORKDIR /app

# Install the workspace-shared tracebility-tenant package first. uv treats
# it as a workspace member; pip needs it pre-installed locally so the
# subsequent ``pip install .`` finds it (not published to PyPI).
COPY services/_shared/tenant /tmp/tracebility-tenant
RUN pip install --no-cache-dir /tmp/tracebility-tenant && rm -rf /tmp/tracebility-tenant

COPY services/api/pyproject.toml ./pyproject.toml
COPY services/api/tracebility_api ./tracebility_api

Expand Down
7 changes: 7 additions & 0 deletions services/ingest-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ ENV PYTHONDONTWRITEBYTECODE=1 \

WORKDIR /app

# Install the workspace-shared tracebility-tenant package first. uv treats
# it as a workspace member; pip needs it pre-installed locally so the
# subsequent ``pip install .`` finds it (the package is not published to
# PyPI).
COPY services/_shared/tenant /tmp/tracebility-tenant
RUN pip install --no-cache-dir /tmp/tracebility-tenant && rm -rf /tmp/tracebility-tenant

COPY services/ingest-api/pyproject.toml ./pyproject.toml
COPY services/ingest-api/tracebility_ingest ./tracebility_ingest

Expand Down
6 changes: 6 additions & 0 deletions services/ingest-worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ ENV PYTHONDONTWRITEBYTECODE=1 \

WORKDIR /app

# Install the workspace-shared tracebility-tenant package first. uv treats
# it as a workspace member; pip needs it pre-installed locally so the
# subsequent ``pip install .`` finds it (not published to PyPI).
COPY services/_shared/tenant /tmp/tracebility-tenant
RUN pip install --no-cache-dir /tmp/tracebility-tenant && rm -rf /tmp/tracebility-tenant

COPY services/ingest-worker/pyproject.toml ./pyproject.toml
COPY services/ingest-worker/tracebility_worker ./tracebility_worker

Expand Down
Loading