A minimal static website that shows a fully black screen.
Behavior:
- The page is entirely black and fills the full viewport.
- Double-click anywhere on the page to toggle fullscreen on/off.
index.html: The black-screen page and fullscreen toggle logic.Containerfile: Minimal non-root container image for serving the static site.
Image:
ghcr.io/pgschk/blackscreen:latest
Run with Podman:
podman run --rm -p 8080:8080 ghcr.io/pgschk/blackscreen:latestRun with Docker:
docker run --rm -p 8080:8080 ghcr.io/pgschk/blackscreen:latestOpen:
Build:
podman build -t blackscreen .Run:
podman run --rm -p 8080:8080 blackscreenOpen:
Build:
docker build -t blackscreen .Run:
docker run --rm -p 8080:8080 blackscreenOpen:
- The container uses
nginxinc/nginx-unprivileged:alpine, which runs without root permissions. - The service listens on port
8080.