mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-08 22:48:14 -05:00
138 lines
5.4 KiB
Docker
138 lines
5.4 KiB
Docker
# ========================================
|
|
# Base Stage: Debian-based Bun
|
|
# ========================================
|
|
FROM oven/bun:1.3.3-slim AS base
|
|
|
|
# ========================================
|
|
# Dependencies Stage: Install Dependencies
|
|
# ========================================
|
|
FROM base AS deps
|
|
WORKDIR /app
|
|
|
|
# Install Node.js 22 for isolated-vm compilation (requires node-gyp and V8)
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
python3 make g++ curl ca-certificates \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY package.json bun.lock turbo.json ./
|
|
RUN mkdir -p apps packages/db packages/testing packages/logger
|
|
COPY apps/sim/package.json ./apps/sim/package.json
|
|
COPY packages/db/package.json ./packages/db/package.json
|
|
COPY packages/testing/package.json ./packages/testing/package.json
|
|
COPY packages/logger/package.json ./packages/logger/package.json
|
|
|
|
# Install turbo globally, then dependencies, then rebuild isolated-vm for Node.js
|
|
RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
|
|
bun install -g turbo && \
|
|
HUSKY=0 bun install --omit=dev --ignore-scripts && \
|
|
cd $(readlink -f node_modules/isolated-vm) && npx node-gyp rebuild --release && cd /app
|
|
|
|
# ========================================
|
|
# Builder Stage: Build the Application
|
|
# ========================================
|
|
FROM base AS builder
|
|
WORKDIR /app
|
|
|
|
# Install turbo globally (cached for fast reinstall)
|
|
RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
|
|
bun install -g turbo
|
|
|
|
# Copy node_modules from deps stage (cached if dependencies don't change)
|
|
COPY --from=deps /app/node_modules ./node_modules
|
|
|
|
# Copy package configuration files (needed for build)
|
|
COPY package.json bun.lock turbo.json ./
|
|
COPY apps/sim/package.json ./apps/sim/package.json
|
|
COPY packages/db/package.json ./packages/db/package.json
|
|
COPY packages/testing/package.json ./packages/testing/package.json
|
|
COPY packages/logger/package.json ./packages/logger/package.json
|
|
|
|
# Copy workspace configuration files (needed for turbo)
|
|
COPY apps/sim/next.config.ts ./apps/sim/next.config.ts
|
|
COPY apps/sim/tsconfig.json ./apps/sim/tsconfig.json
|
|
COPY apps/sim/tailwind.config.ts ./apps/sim/tailwind.config.ts
|
|
COPY apps/sim/postcss.config.mjs ./apps/sim/postcss.config.mjs
|
|
|
|
# Copy source code (changes most frequently - placed last to maximize cache hits)
|
|
COPY apps/sim ./apps/sim
|
|
COPY packages ./packages
|
|
|
|
# Required for standalone nextjs build
|
|
WORKDIR /app/apps/sim
|
|
RUN --mount=type=cache,id=bun-cache,target=/root/.bun/install/cache \
|
|
HUSKY=0 bun install sharp
|
|
|
|
ENV NEXT_TELEMETRY_DISABLED=1 \
|
|
VERCEL_TELEMETRY_DISABLED=1 \
|
|
DOCKER_BUILD=1
|
|
|
|
WORKDIR /app
|
|
|
|
# Provide dummy database URLs during image build so server code that imports @sim/db
|
|
# can be evaluated without crashing. Runtime environments should override these.
|
|
ARG DATABASE_URL="postgresql://user:pass@localhost:5432/dummy"
|
|
ENV DATABASE_URL=${DATABASE_URL}
|
|
|
|
# Provide dummy NEXT_PUBLIC_APP_URL for build-time evaluation
|
|
# Runtime environments should override this with the actual URL
|
|
ARG NEXT_PUBLIC_APP_URL="http://localhost:3000"
|
|
ENV NEXT_PUBLIC_APP_URL=${NEXT_PUBLIC_APP_URL}
|
|
|
|
RUN bun run build
|
|
|
|
# ========================================
|
|
# Runner Stage: Run the actual app
|
|
# ========================================
|
|
|
|
FROM base AS runner
|
|
WORKDIR /app
|
|
|
|
# Install Node.js 22 (for isolated-vm worker), Python, and other runtime dependencies
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
python3 python3-pip python3-venv bash ffmpeg curl ca-certificates \
|
|
&& curl -fsSL https://deb.nodesource.com/setup_22.x | bash - \
|
|
&& apt-get install -y nodejs \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
# Create non-root user and group
|
|
RUN groupadd -g 1001 nodejs && \
|
|
useradd -u 1001 -g nodejs nextjs
|
|
|
|
# Copy application artifacts from builder
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/sim/public ./apps/sim/public
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/sim/.next/standalone ./
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/sim/.next/static ./apps/sim/.next/static
|
|
|
|
# Copy isolated-vm native module (compiled for Node.js in deps stage)
|
|
COPY --from=deps --chown=nextjs:nodejs /app/node_modules/isolated-vm ./node_modules/isolated-vm
|
|
|
|
# Copy the isolated-vm worker script
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/sim/lib/execution/isolated-vm-worker.cjs ./apps/sim/lib/execution/isolated-vm-worker.cjs
|
|
|
|
# Guardrails setup (files need to be owned by nextjs for runtime)
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/sim/lib/guardrails/setup.sh ./apps/sim/lib/guardrails/setup.sh
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/sim/lib/guardrails/requirements.txt ./apps/sim/lib/guardrails/requirements.txt
|
|
COPY --from=builder --chown=nextjs:nodejs /app/apps/sim/lib/guardrails/validate_pii.py ./apps/sim/lib/guardrails/validate_pii.py
|
|
|
|
# Run guardrails setup as root, then fix ownership of generated venv files
|
|
RUN chmod +x ./apps/sim/lib/guardrails/setup.sh && \
|
|
cd ./apps/sim/lib/guardrails && \
|
|
./setup.sh && \
|
|
chown -R nextjs:nodejs /app/apps/sim/lib/guardrails
|
|
|
|
# Create .next/cache directory with correct ownership
|
|
RUN mkdir -p apps/sim/.next/cache && \
|
|
chown -R nextjs:nodejs /app
|
|
|
|
# Switch to non-root user
|
|
USER nextjs
|
|
|
|
EXPOSE 3000
|
|
ENV PORT=3000 \
|
|
HOSTNAME="0.0.0.0"
|
|
|
|
CMD ["bun", "apps/sim/server.js"] |