FROM node:22.14.0 AS build WORKDIR /app COPY . . RUN npm install && npm run build FROM caddy COPY --from=build /app/dist /usr/share/caddy