Add PACS UPP database visualizer

This commit is contained in:
Codex
2026-05-28 00:46:41 +08:00
parent f34e40ec0a
commit 48b0e23d64
9 changed files with 1345 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
RUN apt-get update \
&& apt-get install -y --no-install-recommends postgresql-client \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py ./app.py
COPY static ./static
EXPOSE 8108
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8108"]