2309e9f43a
Five-service streaming platform: auth, catalogue, streaming, ingest, thumbnailer. Includes React frontend served by nginx, NATS JetStream event bus, aiobotocore async S3, PyAV video metadata + thumbnail extraction, service-to-service JWT auth, and a full unit + e2e test suite.
15 lines
347 B
Docker
15 lines
347 B
Docker
FROM git.unkin.net/unkin/almalinux9-base:20260308
|
|
|
|
RUN dnf install -y \
|
|
gcc gcc-c++ make ffmpeg-devel libpq-devel && dnf clean all
|
|
|
|
WORKDIR /app
|
|
COPY pyproject.toml uv.lock* ./
|
|
COPY src/ src/
|
|
COPY tests/ tests/
|
|
COPY testdata/ testdata/
|
|
|
|
RUN uv sync --frozen --extra dev --python 3.12
|
|
|
|
ENV PYTHONPATH="/app/src" PATH="/app/.venv/bin:$PATH"
|