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