Files
relibre/Dockerfile
2025-10-18 02:07:37 -04:00

11 lines
321 B
Docker

# 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