Files
OpenJarvis/deploy/docker/Dockerfile.sandbox
T
2026-03-12 17:29:39 +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"]