942780db1c
- Add structured grading policy with predefined types (Continuous Assessment, Midterm, Final Test, Exam) - Replace free-text category input with combobox selection in Grading Policy page - Update Lesson Editor to use dropdown selector for grading category assignment - Fix create_grading_category handler to capture organization context - Fix update_course handler to set audit context in database transaction - Implement getImageUrl helper for proper asset path resolution - Add unoptimized prop to organization logo images to bypass Next.js optimization - Add database migrations for organization_id in content tables - Seed default tutorial courses for Admin, Instructor, and Student roles - Fix audit log constraints and content schema issues
41 lines
1.1 KiB
Docker
41 lines
1.1 KiB
Docker
# Build stage for Rust LMS
|
|
FROM rustlang/rust:nightly AS rust-builder
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/*
|
|
RUN cargo build --release -p lms-service
|
|
|
|
# Build stage for Next.js Experience
|
|
FROM node:18-alpine AS node-builder
|
|
WORKDIR /app
|
|
COPY web/experience/package*.json ./
|
|
RUN npm install
|
|
COPY web/experience/ .
|
|
RUN npm run build
|
|
|
|
# Final stage
|
|
FROM node:18-slim AS runner
|
|
WORKDIR /app
|
|
ENV NODE_ENV production
|
|
|
|
# Install system dependencies for Rust binary
|
|
RUN apt-get update && apt-get install -y openssl ca-certificates && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install sharp for Next.js image optimization
|
|
RUN npm install sharp
|
|
|
|
# Copy LMS binary
|
|
COPY --from=rust-builder /usr/src/app/target/release/lms-service ./
|
|
|
|
# Copy Experience frontend
|
|
COPY --from=node-builder /app/public ./public
|
|
COPY --from=node-builder /app/.next/standalone ./
|
|
COPY --from=node-builder /app/.next/static ./.next/static
|
|
|
|
# Copy entrypoint
|
|
COPY web/experience/entrypoint.sh ./
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
EXPOSE 3003 3002
|
|
CMD ["./entrypoint.sh"]
|