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