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