FROM node:25 AS builder COPY . /src WORKDIR /src RUN npm install && node ./index.js FROM caddy:2.11.1 COPY --from=builder /src/build /usr/share/caddy