Files
OpenJarvis/deploy/docker/Dockerfile.sandbox
T
Jon Saad-FalconandClaude Opus 4.6 828f28b72a refactor: move Docker files to deploy/docker/
Move all 6 Docker files (Dockerfile, Dockerfile.gpu, Dockerfile.gpu.rocm,
Dockerfile.sandbox, docker-compose.yml, docker-compose.gpu.rocm.yml) from
the project root into deploy/docker/ to reduce root-level clutter. Update
build context paths in both docker-compose files to point back to the
project root (../..) so Docker builds continue to work correctly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-02 20:29:57 +00:00

17 lines
434 B
Docker

FROM python:3.12-slim
# Install Node.js 22
RUN apt-get update && apt-get install -y --no-install-recommends \
curl ca-certificates && \
curl -fsSL https://deb.nodesource.com/setup_22.x | bash - && \
apt-get install -y nodejs && \
rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir ".[server]"
LABEL openjarvis-sandbox=true
ENTRYPOINT ["python", "-m", "openjarvis.sandbox.entrypoint"]