Public Quart microservice that runs pytest against shared/tests/ and shared/sexp/tests/, serving an HTMX-powered sexp-rendered dashboard with pass/fail/running status, auto-refresh polling, and re-run button. No database — results stored in memory. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
61 lines
1.9 KiB
Docker
61 lines
1.9 KiB
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM python:3.11-slim AS base
|
|
|
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
|
PYTHONUNBUFFERED=1 \
|
|
PYTHONPATH=/app \
|
|
PIP_NO_CACHE_DIR=1 \
|
|
APP_PORT=8000 \
|
|
APP_MODULE=app:app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY shared/requirements.txt ./requirements.txt
|
|
RUN pip install -r requirements.txt && \
|
|
pip install pytest pytest-json-report
|
|
|
|
# Shared code (including tests)
|
|
COPY shared/ ./shared/
|
|
|
|
# App code
|
|
COPY test/ ./test-app-tmp/
|
|
# Move service files into /app (flatten), but keep Dockerfile.* in place
|
|
RUN cp -r test-app-tmp/app.py test-app-tmp/path_setup.py \
|
|
test-app-tmp/bp test-app-tmp/sexp test-app-tmp/services \
|
|
test-app-tmp/runner.py test-app-tmp/__init__.py ./ 2>/dev/null || true && \
|
|
rm -rf test-app-tmp
|
|
|
|
# Sibling models for cross-domain SQLAlchemy imports
|
|
COPY blog/__init__.py ./blog/__init__.py
|
|
COPY blog/models/ ./blog/models/
|
|
COPY market/__init__.py ./market/__init__.py
|
|
COPY market/models/ ./market/models/
|
|
COPY cart/__init__.py ./cart/__init__.py
|
|
COPY cart/models/ ./cart/models/
|
|
COPY events/__init__.py ./events/__init__.py
|
|
COPY events/models/ ./events/models/
|
|
COPY federation/__init__.py ./federation/__init__.py
|
|
COPY federation/models/ ./federation/models/
|
|
COPY account/__init__.py ./account/__init__.py
|
|
COPY account/models/ ./account/models/
|
|
COPY relations/__init__.py ./relations/__init__.py
|
|
COPY relations/models/ ./relations/models/
|
|
COPY likes/__init__.py ./likes/__init__.py
|
|
COPY likes/models/ ./likes/models/
|
|
COPY orders/__init__.py ./orders/__init__.py
|
|
COPY orders/models/ ./orders/models/
|
|
|
|
COPY test/entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
RUN chmod +x /usr/local/bin/entrypoint.sh
|
|
|
|
RUN useradd -m -u 10001 appuser && chown -R appuser:appuser /app
|
|
USER appuser
|
|
|
|
EXPOSE ${APP_PORT}
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|