Replace the broken Docker setup (Python 3.6 Alpine, `pipenv`, hardcoded credentials) with a modern Podman-based development environment using Red Hat Universal Base Images for OpenShift compatibility. `Containerfile` (replaces `Dockerfile`): - Multi-stage build: builder stage installs Poetry and dependencies, runtime stage copies only the installed packages for a smaller image - Base image: UBI 9 Python 3.12 (OpenShift-certified) - Runs as non-root `USER 1001` (required by OpenShift SCC) - Gunicorn as the application server instead of Django's runserver - No longer calls `generate_client_secrets.sh` during build `podman-compose.yml` (replaces `docker-compose.yml`): - PostgreSQL 17, Redis 7, RabbitMQ 3 with health checks - `depends_on` with `service_healthy` conditions instead of links - Named volume (`pgdata`) for PostgreSQL persistence - SELinux `:z` labels on bind mounts for Fedora hosts - Gunicorn with `--reload` for development hot-reload Also adds: - `.env.example` — template for local development secrets - `.containerignore` — excludes .git, secrets, and build artifacts from the container image Closes #222. Closes #265. Assisted-by: Claude Opus 4.6 (1M context) Signed-off-by: Justin Wheeler <jwheel@fedoraproject.org>
15 lines
144 B
Text
15 lines
144 B
Text
.git
|
|
.forgejo
|
|
.claude
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
.env
|
|
*.sqlite3
|
|
htmlcov/
|
|
.coverage
|
|
docs/_build/
|
|
static/
|
|
media/
|
|
selenium-screenshots/
|
|
whoosh_index/
|