CheapStack kits are Next.js applications that can be deployed to any platform supporting Node.js. The SaaS Boilerplate ($59) can be deployed to Vercel, Cloudflare Workers (via static export), or any Node.js hosting. For Docker deployment, the standard Next.js Dockerfile pattern applies: multi-stage build with npm install, next build, and node server.js using the standalone output mode.
# Standard Next.js Dockerfile FROM node:20-alpine AS builder WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . RUN npm run build FROM node:20-alpine AS runner WORKDIR /app COPY --from=builder /app/.next/standalone ./ EXPOSE 3000 CMD ["node", "server.js"]