bb6be245b7
## Summary This PR implements the tournament schedule tab functionality and fixes all remaining E2E test failures. ### Changes Included 1. **Tournament Schedule Feature** - Added tournament schedule page at `/admin/tournaments/[id]/schedule` - Implemented "Generate Schedule" button functionality - Added schedule generation logic for round-robin tournaments 2. **E2E Test Fixes** - Fixed database connection issues in production builds - Improved test reliability with better error handling and debugging - Updated test infrastructure to use environment variables instead of hardcoded values 3. **CI/CD Updates** - Added E2E test job to PR workflow - Configured tests to run against development database - Moved database password to Gitea secrets 4. **Code Quality** - Removed hardcoded passwords from codebase - Improved Prisma client configuration - Enhanced authentication and navigation components ### Test Results All 16 E2E test scenarios are now passing: - Authentication tests: ✅ - Registration tests: ✅ - Tournament schedule tests: ✅ - Player schedule tests: ✅ - Admin navigation tests: ✅ ### Database Configuration - Tests run against `euchre_camp_dev` database - Production builds use environment variables for database configuration - Database password stored in Gitea secrets as `DB_PASSWORD` ### CI Pipeline The PR workflow now includes: 1. Unit tests 2. E2E tests (using production build) 3. Version bump analysis E2E tests must pass before PR can be merged. Reviewed-on: #27 Co-authored-by: David Gwilliam <dhgwilliam@gmail.com> Co-committed-by: David Gwilliam <dhgwilliam@gmail.com>
90 lines
2.7 KiB
Docker
90 lines
2.7 KiB
Docker
# Multi-stage build for EuchreCamp Next.js application
|
|
|
|
# Stage 1: Builder
|
|
FROM oven/bun:alpine AS builder
|
|
|
|
# Install dependencies (needed for native modules)
|
|
RUN apk add --no-cache python3 make g++
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
|
|
# Install dependencies (including dev dependencies for building)
|
|
RUN bun install
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Generate Prisma client (with dummy PostgreSQL DATABASE_URL for build-time generation)
|
|
# Note: A dummy URL is used since the real database is not available during build
|
|
RUN DATABASE_PROVIDER=postgresql DATABASE_URL="postgresql://user:pass@localhost:5432/dummy" bun x prisma generate
|
|
|
|
# Build the application (with dummy DATABASE_URL for static page generation and git commit)
|
|
ARG GIT_COMMIT=unknown
|
|
RUN DATABASE_PROVIDER=postgresql DATABASE_URL="postgresql://user:pass@localhost:5432/dummy" NEXT_PUBLIC_GIT_COMMIT=$GIT_COMMIT bun run build
|
|
|
|
# Stage 2: Test runner (includes dev dependencies for testing)
|
|
FROM oven/bun:alpine AS test-runner
|
|
|
|
# Install dependencies
|
|
RUN apk add --no-cache python3 make g++ git
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy package files
|
|
COPY package*.json ./
|
|
|
|
# Install ALL dependencies (including dev dependencies for testing)
|
|
RUN bun install
|
|
|
|
# Copy source code
|
|
COPY . .
|
|
|
|
# Generate Prisma client
|
|
RUN DATABASE_PROVIDER=postgresql DATABASE_URL="postgresql://user:pass@localhost:5432/dummy" bun x prisma generate
|
|
|
|
# Stage 3: Production runner
|
|
FROM oven/bun:alpine AS runner
|
|
|
|
# Install dumb-init for proper signal handling
|
|
RUN apk add --no-cache dumb-init
|
|
|
|
# Create non-root user
|
|
RUN addgroup --system --gid 1001 euchre && \
|
|
adduser --system --uid 1001 --ingroup euchre euchre
|
|
|
|
# Set working directory
|
|
WORKDIR /app
|
|
|
|
# Copy built application from builder
|
|
COPY --from=builder --chown=euchre:euchre /app/.next ./.next
|
|
COPY --from=builder --chown=euchre:euchre /app/public ./public
|
|
COPY --from=builder --chown=euchre:euchre /app/package.json ./package.json
|
|
COPY --from=builder --chown=euchre:euchre /app/bun.lock ./bun.lock
|
|
COPY --from=builder --chown=euchre:euchre /app/prisma ./prisma
|
|
|
|
# Install only production dependencies
|
|
RUN bun install --production
|
|
|
|
# Generate Prisma client
|
|
# Note: We need to set DATABASE_URL even for generation because prisma.config.ts requires it
|
|
RUN DATABASE_PROVIDER=postgresql DATABASE_URL="postgresql://user:pass@localhost:5432/dummy" bun x prisma generate
|
|
|
|
# Switch to non-root user
|
|
USER euchre
|
|
|
|
# Expose port
|
|
EXPOSE 3000
|
|
|
|
# Health check
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
|
CMD wget --no-verbose --tries=1 --spider http://localhost:3000/api/health || exit 1
|
|
|
|
# Start command
|
|
ENTRYPOINT ["dumb-init", "--"]
|
|
CMD ["bun", "run", "start"]
|