- Cloudflare Workers deployment - Railway backend deployment - GitHub Actions CI/CD - Stripe payment integration - Clerk authentication - Service mesh connectivity - Environment templates - Docker support 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
131 B
Docker
13 lines
131 B
Docker
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package*.json ./
|
|
RUN npm ci --only=production
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["npm", "start"]
|