Static Sites with Python, uv, Caddy, and Docker Nik Kantar documents his Docker-based setup for building and deploying mostly static web sites in line-by-line detail.I found this really useful. The Dockerfile itself without comments is just 8 lines long: FROM ghcr.io/astral-sh/uv:debian AS build WORKDIR /src COPY . . RUN uv python install 3.13 RUN uv run --no-dev sus FROM caddy:alpine COPY Caddyfile /etc/caddy/Caddyfile COPY --from=build /src/output /srv/ He also includes a Caddyfile that sho...