Eric X. Liu eric

gpt-researcher-langgraph (latest)

Published 2025-04-16 00:42:58 +00:00 by eric

Installation

docker pull git.ericxliu.me/eric/gpt-researcher-langgraph:latest
sha256:0ac7e56057d1a2bcb298cebbe233661c8f708b1ca9b7d83918f3f4cf8007bd95

Image Layers

# debian.sh --arch 'amd64' out/ 'bookworm' '@1743984000'
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV LANG=C.UTF-8
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/* # buildkit
ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
ENV PYTHON_VERSION=3.11.12
ENV PYTHON_SHA256=849da87af4df137710c1796e276a955f7a85c9f971081067c8f565d15c352a09
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==65.5.1' 'wheel<0.46' ; pip3 --version # buildkit
RUN /bin/sh -c set -eux; for src in idle3 pip3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit
CMD ["python3"]
ARG PYTHON_VERSION=3.11
ARG REVISION=a4bad47
ARG VARIANT=licensed
ARG OS_VERSION=slim
ARG RUNTIME_EDITION=postgres
RUN |5 PYTHON_VERSION=3.11 REVISION=a4bad47 VARIANT=licensed OS_VERSION=slim RUNTIME_EDITION=postgres /bin/sh -c if [ "${OS_VERSION}" != "slim-bullseye" ]; then apt-get update && apt-get install -y --no-install-recommends git && rm -rf /var/lib/apt/lists/*; fi # buildkit
COPY /api /api # buildkit
COPY /storage /storage # buildkit
COPY /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages # buildkit
COPY /usr/local/bin/uvicorn /usr/local/bin/uvicorn # buildkit
COPY /usr/local/bin/langgraph-verify-graphs /usr/local/bin/langgraph-verify-graphs # buildkit
WORKDIR /api
ENV PYTHONFAULTHANDLER=1 PYTHONUNBUFFERED=True PORT=8000 PIP_ROOT_USER_ACTION=ignore N_WORKERS=1 N_JOBS_PER_WORKER=10 LANGSMITH_LANGGRAPH_API_REVISION=a4bad47 LANGSMITH_LANGGRAPH_API_VARIANT=licensed LANGGRAPH_RUNTIME_EDITION=postgres
LABEL org.opencontainers.image.revision=a4bad47
HEALTHCHECK &{["CMD" "python" "/api/healthcheck.py"] "5s" "2s" "0s" "0s" '\x05'}
COPY /datadog-init /app/datadog-init # buildkit
RUN |5 PYTHON_VERSION=3.11 REVISION=a4bad47 VARIANT=licensed OS_VERSION=slim RUNTIME_EDITION=postgres /bin/sh -c if [ "${PYTHON_VERSION}" = "3.11" ] || [ "${PYTHON_VERSION}" = "3.12" ]; then pip install --target /dd_tracer/python/ ddtrace; fi # buildkit
RUN |5 PYTHON_VERSION=3.11 REVISION=a4bad47 VARIANT=licensed OS_VERSION=slim RUNTIME_EDITION=postgres /bin/sh -c chmod +x /storage/entrypoint.sh && chmod +x /storage/install-node.sh # buildkit
ENTRYPOINT ["/storage/entrypoint.sh"]
ADD requirements.txt /deps/__outer_multi_agents/multi_agents/requirements.txt # buildkit
RUN /bin/sh -c PYTHONDONTWRITEBYTECODE=1 pip install --no-cache-dir -c /api/constraints.txt -r /deps/__outer_multi_agents/multi_agents/requirements.txt # buildkit
ADD . /deps/__outer_multi_agents/multi_agents # buildkit
RUN /bin/sh -c set -ex && for line in '[project]' 'name = "multi_agents"' 'version = "0.1"' '[tool.setuptools.package-data]' '"*" = ["**/*"]'; do echo "$line" >> /deps/__outer_multi_agents/pyproject.toml; done # buildkit
RUN /bin/sh -c PYTHONDONTWRITEBYTECODE=1 pip install --no-cache-dir -c /api/constraints.txt -e /deps/* # buildkit
ENV LANGSERVE_GRAPHS={"agent": "/deps/__outer_multi_agents/multi_agents/agent.py:graph"}
WORKDIR /deps/__outer_multi_agents/multi_agents

Labels

Key Value
org.opencontainers.image.revision a4bad47
Details
Container
2025-04-16 00:42:58 +00:00
3
OCI / Docker
linux/amd64
263 MiB
Versions (5) View all
2025-04-16-05ee15 2025-04-16
latest 2025-04-16
2025-04-16-8aad65 2025-04-16
2025-04-16-fb3c82 2025-04-16
2025-04-16-6de7e7 2025-04-16