mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-12 07:45:14 -05:00
- Update Python version constraint from ^3.10 to ^3.12 in all pyproject.toml - Update classifiers to reflect Python 3.12, 3.13, 3.14 support - Update dependencies for Python 3.13+ compatibility: - chromadb: ^0.4.10 -> ^1.4.0 - numpy: >=1.26.0,<2.0.0 -> >=2.0.0 - watchdog: 4.0.0 -> ^6.0.0 - spacy: ^3.0.0 -> ^3.8.0 (numpy 2.x compatibility) - en-core-web-sm model: 3.7.1 -> 3.8.0 - httpx (benchmark): ^0.24.0 -> ^0.27.0 - Update tool configuration: - Black target-version: py310 -> py312 - Pyright pythonVersion: 3.10 -> 3.12 - Update Dockerfiles to use Python 3.12 - Update CI workflows to test on Python 3.12, 3.13, and 3.14 - Regenerate all poetry.lock files Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
58 lines
1.6 KiB
Docker
58 lines
1.6 KiB
Docker
# 'dev' or 'release' container build
|
|
ARG BUILD_TYPE=dev
|
|
|
|
# Use an official Python base image from the Docker Hub
|
|
FROM python:3.12-slim AS autogpt-base
|
|
|
|
# Install browsers
|
|
RUN apt-get update && apt-get install -y \
|
|
chromium-driver ca-certificates gcc \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install utilities
|
|
RUN apt-get update && apt-get install -y \
|
|
curl jq wget git \
|
|
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
# Set environment variables
|
|
ENV PIP_NO_CACHE_DIR=yes \
|
|
PYTHONUNBUFFERED=1 \
|
|
PYTHONDONTWRITEBYTECODE=1 \
|
|
POETRY_HOME="/opt/poetry" \
|
|
POETRY_VIRTUALENVS_PATH="/venv" \
|
|
POETRY_VIRTUALENVS_IN_PROJECT=0 \
|
|
POETRY_NO_INTERACTION=1
|
|
|
|
# Install and configure Poetry
|
|
RUN curl -sSL https://install.python-poetry.org | python3 -
|
|
ENV PATH="$POETRY_HOME/bin:$PATH"
|
|
RUN poetry config installer.max-workers 10
|
|
|
|
WORKDIR /app/autogpt
|
|
COPY original_autogpt/pyproject.toml original_autogpt/poetry.lock ./
|
|
|
|
# Include forge so it can be used as a path dependency
|
|
COPY forge/ ../forge
|
|
|
|
# Set the entrypoint
|
|
ENTRYPOINT ["poetry", "run", "autogpt"]
|
|
CMD []
|
|
|
|
# dev build -> include everything
|
|
FROM autogpt-base AS autogpt-dev
|
|
RUN poetry install --no-cache --no-root \
|
|
&& rm -rf $(poetry env info --path)/src
|
|
ONBUILD COPY original_autogpt/ ./
|
|
ONBUILD RUN mkdir -p ./data
|
|
|
|
# release build -> include bare minimum
|
|
FROM autogpt-base AS autogpt-release
|
|
RUN poetry install --no-cache --no-root --without dev \
|
|
&& rm -rf $(poetry env info --path)/src
|
|
ONBUILD COPY original_autogpt/ ./autogpt
|
|
ONBUILD COPY original_autogpt/README.md ./README.md
|
|
ONBUILD RUN mkdir -p ./data
|
|
|
|
FROM autogpt-${BUILD_TYPE} AS autogpt
|
|
RUN poetry install --only-root
|