| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- ARG OPEN_DEVIN_BUILD_VERSION=dev
- FROM node:21.7.2-bookworm-slim as frontend-builder
- WORKDIR /app
- COPY ./frontend/package.json frontend/package-lock.json ./
- RUN npm install -g npm@10.5.1
- RUN npm ci
- COPY ./frontend ./
- RUN npm run make-i18n && npm run build
- FROM python:3.12-slim as backend-builder
- WORKDIR /app
- ENV PYTHONPATH '/app'
- ENV POETRY_NO_INTERACTION=1 \
- POETRY_VIRTUALENVS_IN_PROJECT=1 \
- POETRY_VIRTUALENVS_CREATE=1 \
- POETRY_CACHE_DIR=/tmp/poetry_cache
- RUN apt-get update -y \
- && apt-get install -y curl make git build-essential \
- && python3 -m pip install poetry==1.8.2 --break-system-packages
- COPY ./pyproject.toml ./poetry.lock ./
- RUN touch README.md
- RUN poetry install --without evaluation --no-root && rm -rf $POETRY_CACHE_DIR
- FROM python:3.12-slim as runtime
- WORKDIR /app
- ENV RUN_AS_DEVIN=true
- # A random number--we need this to be different from the user's UID on the host machine
- ENV OPENDEVIN_USER_ID=42420
- ENV USE_HOST_NETWORK=false
- ENV SSH_HOSTNAME=host.docker.internal
- ENV WORKSPACE_BASE=/opt/workspace_base
- ENV OPEN_DEVIN_BUILD_VERSION=$OPEN_DEVIN_BUILD_VERSION
- RUN mkdir -p $WORKSPACE_BASE
- RUN apt-get update -y \
- && apt-get install -y curl ssh sudo
- RUN sed -i 's/^UID_MIN.*/UID_MIN 499/' /etc/login.defs # Default is 1000, but OSX is often 501
- RUN groupadd app
- RUN useradd -l -m -u $OPENDEVIN_USER_ID -s /bin/bash opendevin && \
- usermod -aG app opendevin && \
- usermod -aG sudo opendevin && \
- echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
- RUN chown -R opendevin:app /app && chmod -R 770 /app
- USER opendevin
- ENV VIRTUAL_ENV=/app/.venv \
- PATH="/app/.venv/bin:$PATH" \
- PYTHONPATH='/app'
- COPY --chown=opendevin:app --chmod=770 --from=backend-builder ${VIRTUAL_ENV} ${VIRTUAL_ENV}
- RUN playwright install --with-deps chromium
- COPY --chown=opendevin:app --chmod=770 ./opendevin ./opendevin
- COPY --chown=opendevin:app --chmod=777 ./opendevin/runtime/plugins ./opendevin/runtime/plugins
- COPY --chown=opendevin:app --chmod=770 ./agenthub ./agenthub
- RUN python opendevin/core/download.py # No-op to download assets
- RUN chown -R opendevin:app /app/logs && chmod -R 770 /app/logs # This gets created by the download.py script
- COPY --chown=opendevin:app --chmod=770 --from=frontend-builder /app/dist ./frontend/dist
- COPY --chown=opendevin:app --chmod=770 ./containers/app/entrypoint.sh /app/entrypoint.sh
- USER root
- CMD ["/app/entrypoint.sh"]
|