# Minimal static web container for Relibre; Caddy runs separately as a reverse proxy. FROM nginx:alpine # Serve the repo root (index.html, ui/, images/, etc.) COPY . /usr/share/nginx/html # Basic healthcheck HEALTHCHECK --interval=30s --timeout=3s --retries=3 CMD \ wget -qO- http://localhost/ > /dev/null || exit 1