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