57 lines
1.5 KiB
Docker
57 lines
1.5 KiB
Docker
# Build stage for Rust LMS
|
|
FROM rustlang/rust:nightly AS rust-builder
|
|
WORKDIR /usr/src/app
|
|
|
|
# Install system dependencies first
|
|
RUN apt-get update && apt-get install -y pkg-config libssl-dev && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy entire project for building (simpler and more reliable)
|
|
COPY Cargo.toml Cargo.lock ./
|
|
COPY shared/ ./shared/
|
|
COPY services/ ./services/
|
|
|
|
# Build the LMS service
|
|
RUN cargo build --release -p lms-service
|
|
|
|
# Build stage for Next.js Experience
|
|
FROM node:20-alpine AS node-builder
|
|
WORKDIR /app
|
|
|
|
# Configure DNS for Google Fonts access during build
|
|
RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf
|
|
|
|
COPY web/experience/package*.json ./
|
|
RUN npm ci
|
|
COPY web/experience/ .
|
|
ARG NEXT_PUBLIC_LMS_API_URL
|
|
ENV NEXT_PUBLIC_LMS_API_URL=$NEXT_PUBLIC_LMS_API_URL
|
|
ARG NEXT_PUBLIC_CMS_API_URL
|
|
ENV NEXT_PUBLIC_CMS_API_URL=$NEXT_PUBLIC_CMS_API_URL
|
|
RUN npm run build
|
|
|
|
# Final stage
|
|
FROM node:20-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"]
|