All checks were successful
Build and Publish Container Image / build-and-push (push) Successful in 41s
Add the PostgreSQL backend, migration and stopped-write transfer tools, lease-aware deployment manifests, tenancy declarations, and shared conformance coverage. Persist grouping mutations in durable stores and separate process liveness from database readiness.
11 lines
331 B
Docker
11 lines
331 B
Docker
FROM python:3.12-slim
|
|
RUN useradd --system --uid 10001 --create-home tenant-engine
|
|
WORKDIR /app
|
|
COPY pyproject.toml README.md LICENSE ./
|
|
COPY src ./src
|
|
COPY migrations ./migrations
|
|
RUN pip install --no-cache-dir ".[postgres]"
|
|
USER 10001
|
|
EXPOSE 8090
|
|
ENV TENANT_ENGINE_HOST=0.0.0.0 TENANT_ENGINE_HTTP_PORT=8090
|
|
CMD ["tenant-engine"]
|