Merge pull request #179 from illia1f/feature/isolated-docker-compose

feat: Add Docker containerization for secure, isolated execution
This commit is contained in:
Web Dev Cody
2025-12-20 15:06:09 -05:00
committed by GitHub
9 changed files with 193 additions and 8 deletions

View File

@@ -4,11 +4,15 @@
# Build stage
FROM node:20-alpine AS builder
# Install build dependencies for native modules (node-pty)
RUN apk add --no-cache python3 make g++
WORKDIR /app
# Copy package files
# Copy package files and scripts needed for postinstall
COPY package*.json ./
COPY apps/server/package*.json ./apps/server/
COPY scripts ./scripts
# Install dependencies
RUN npm ci --workspace=apps/server