Phase 0 foundation: - Docker Compose with PostgreSQL, Redis, Hardhat node - RPSArena.sol commit-reveal smart contract with tests - Node.js + Socket.io server with matchmaking and match state machine - Next.js + Phaser 3 frontend with Boot, Lobby, Arena, Result scenes - Nginx Proxy Manager integration planned for jeu.cosmolan.fr Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
18 lines
417 B
Docker
18 lines
417 B
Docker
FROM node:20-alpine AS builder
|
|
WORKDIR /app
|
|
RUN apk add --no-cache git
|
|
COPY package.json ./
|
|
RUN npm install
|
|
COPY . .
|
|
RUN npx prisma generate
|
|
RUN npm run build
|
|
|
|
FROM node:20-alpine
|
|
WORKDIR /app
|
|
RUN apk add --no-cache git
|
|
COPY --from=builder /app/node_modules ./node_modules
|
|
COPY --from=builder /app/dist ./dist
|
|
COPY --from=builder /app/prisma ./prisma
|
|
ENV NODE_ENV=production
|
|
EXPOSE 3001
|
|
CMD ["node", "dist/index.js"]
|