Files
br-os/Dockerfile
Alexa Louise 92352d3fe4 feat: Add complete wiring infrastructure
- 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>
2025-12-12 00:26:09 -06:00

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"]