2024-07-10 20:43:32 UTC
103 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
N_JOBS_PER_WORKER10
N_WORKERS1
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PIP_ROOT_USER_ACTIONignore
PORT8000
PYTHONFAULTHANDLER1
PYTHONUNBUFFEREDTrue
PYTHON_GET_PIP_SHA2560f8bb2652c0b0965f268312f49ec21e772d421d381af4324beea66b8acf2635c
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/ac00c61f60b2df101b7cdf90ed319b625ac93b42/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
[#000] sha256:f11c1adaa26e078479ccdd45312ea3b88476441b91be0ec898a7e07bfd05badc - 26.9% (27.8 MB)
[#001] sha256:c1ffa773372df0248c21b3d0965cc0197074d66e5ca8d6e23d6fcdd43a39ab45 - 3.24% (3.35 MB)
[#002] sha256:bb03a6d9f5bc4d62b6c0fe02b885a4bdf44b5661ff5d3a3112bac4f16c8e0fe4 - 11.88% (12.3 MB)
[#003] sha256:3012e1cab3ddadfb1f5886d260c06da74fc1cb0bf8ca660ec2306ac9ce87fc8c - 0.0% (231 Bytes)
[#004] sha256:293c7f22380c8fd647d1dc801d163d33cf597052de2b5b0e13b72a1843b9c0cc - 2.96% (3.06 MB)
[#005] sha256:b666f38776dffd4cc761c54711bba83502470fa880df8fc4b6cb958d8c8c5bc3 - 14.13% (14.6 MB)
[#006] sha256:9bf5fc6c3c5a00d2d90f14f56be5bfbd0a6f919674d0cae7b284823e57e4d6ab - 0.13% (140 KB)
[#007] sha256:d3bfdc0bfc32d17230d7a1bcae95fa46fe61b99b131e1f552eef25f5ebda16fe - 0.01% (12.9 KB)
[#008] sha256:8e94ffb6911e18db9f9f91147d49627185622d58f928bb0da86f9af7fb21449f - 0.01% (5.42 KB)
[#009] sha256:ee45ec08249c467cce8a6a7d748b98facd7c334d18e3cb16f09826dc5e03ce4c - 40.74% (42.1 MB)
[#010] sha256:264ae88399989e159e1128ab3774c07123a22afab9bbdcc48543b86868e53444 - 0.0% (318 Bytes)
[#011] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:b24689567a7c604de93e4ef1dc87c372514f692556744da43925c575b4f80df6 in /
2024-06-26 21:54:54 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)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
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)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 libexpat1-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"; 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-system-expat --without-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:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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/*; python3 --version # buildkit
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/ac00c61f60b2df101b7cdf90ed319b625ac93b42/public/get-pip.py
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=0f8bb2652c0b0965f268312f49ec21e772d421d381af4324beea66b8acf2635c
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-10 20:43:29 UTC (buildkit.dockerfile.v0)ARG PYTHON_VERSION=3.11
2024-07-10 20:43:29 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/migrate /usr/local/bin/migrate # buildkit
2024-07-10 20:43:29 UTC (buildkit.dockerfile.v0)COPY /api /api # buildkit
2024-07-10 20:43:29 UTC (buildkit.dockerfile.v0)COPY /storage /storage # buildkit
2024-07-10 20:43:30 UTC (buildkit.dockerfile.v0)COPY /license /license # buildkit
2024-07-10 20:43:32 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages # buildkit
2024-07-10 20:43:32 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/uvicorn /usr/local/bin/uvicorn # buildkit
2024-07-10 20:43:32 UTC (buildkit.dockerfile.v0)WORKDIR /api
2024-07-10 20:43:32 UTC (buildkit.dockerfile.v0)ENV PYTHONFAULTHANDLER=1 PYTHONUNBUFFERED=True PORT=8000 PIP_ROOT_USER_ACTION=ignore N_WORKERS=1 N_JOBS_PER_WORKER=10
2024-07-10 20:43:32 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD" "python" "/api/healthcheck.py"] "5s" "2s" "0s" "0s" '\x05'}
2024-07-10 20:43:32 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh" "-c" "exec uvicorn langgraph_api.server:app --log-config /api/logging.json --host 0.0.0.0 --port $PORT"]
2024-07-10 20:46:48 UTC
102 MB
A035C8C19219BA821ECEA86B64E628F8D684696D
LANGC.UTF-8
N_JOBS_PER_WORKER10
N_WORKERS1
PATH/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PIP_ROOT_USER_ACTIONignore
PORT8000
PYTHONFAULTHANDLER1
PYTHONUNBUFFEREDTrue
PYTHON_GET_PIP_SHA2560f8bb2652c0b0965f268312f49ec21e772d421d381af4324beea66b8acf2635c
PYTHON_GET_PIP_URLhttps://github.com/pypa/get-pip/raw/ac00c61f60b2df101b7cdf90ed319b625ac93b42/public/get-pip.py
PYTHON_PIP_VERSION24.0
PYTHON_SETUPTOOLS_VERSION65.5.1
PYTHON_VERSION3.11.9
[#000] sha256:ea235d1ccf77ca07a545b448996766dc3eca4b971b04ba39d50af69660b25751 - 27.35% (27.8 MB)
[#001] sha256:26f13e32d8cd0dd6045ae8e76baa59b01457fb37cef4627f2e033eba1d883a6f - 3.12% (3.18 MB)
[#002] sha256:e569c3fca5036d44efc4705a7872b1e2809842656dd5fc500a76fcb111793164 - 12.05% (12.2 MB)
[#003] sha256:8cae6dc67aef5a47b5b325c7833ee6d5b033f9e00a71fe24898b94af44755600 - 0.0% (232 Bytes)
[#004] sha256:04f858192034b1433267a08477c48f41f464ea549f4233c12004c29c331d5fb9 - 3.01% (3.06 MB)
[#005] sha256:a4419cda520b57d5ba3508a32c62eaf520d332398c81b530d5d10104f8148930 - 13.28% (13.5 MB)
[#006] sha256:087ea8d8839032cc3e7a72d39503a87662e503a2c805df995c45a357424a2b46 - 0.13% (140 KB)
[#007] sha256:d3bfdc0bfc32d17230d7a1bcae95fa46fe61b99b131e1f552eef25f5ebda16fe - 0.01% (12.9 KB)
[#008] sha256:8e94ffb6911e18db9f9f91147d49627185622d58f928bb0da86f9af7fb21449f - 0.01% (5.42 KB)
[#009] sha256:a56c8f7d4a2d0deb85eaba6386e9daf8166daa4878424d548b3008985cca1483 - 41.04% (41.7 MB)
[#010] sha256:f769fd3a65729b3483b7d4b4620b54aa578d299a9c1bfadfa9b071fec3ef5c2f - 0.0% (318 Bytes)
[#011] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
/bin/sh -c #(nop) ADD file:cbda549b25cd4337cd3ce345e3b66c0d3b43c247d7315906a028f98a56c41f1d in /
2024-06-26 21:54:54 UTC/bin/sh -c #(nop) CMD ["bash"]
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV LANG=C.UTF-8
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)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
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_VERSION=3.11.9
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)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 libexpat1-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"; 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-system-expat --without-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:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" 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/*; python3 --version # buildkit
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; for src in idle3 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
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_PIP_VERSION=24.0
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_SETUPTOOLS_VERSION=65.5.1
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/ac00c61f60b2df101b7cdf90ed319b625ac93b42/public/get-pip.py
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)ENV PYTHON_GET_PIP_SHA256=0f8bb2652c0b0965f268312f49ec21e772d421d381af4324beea66b8acf2635c
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit
2024-06-26 21:54:54 UTC (buildkit.dockerfile.v0)CMD ["python3"]
2024-07-10 20:46:46 UTC (buildkit.dockerfile.v0)ARG PYTHON_VERSION=3.11
2024-07-10 20:46:46 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/migrate /usr/local/bin/migrate # buildkit
2024-07-10 20:46:46 UTC (buildkit.dockerfile.v0)COPY /api /api # buildkit
2024-07-10 20:46:46 UTC (buildkit.dockerfile.v0)COPY /storage /storage # buildkit
2024-07-10 20:46:46 UTC (buildkit.dockerfile.v0)COPY /license /license # buildkit
2024-07-10 20:46:48 UTC (buildkit.dockerfile.v0)COPY /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages # buildkit
2024-07-10 20:46:48 UTC (buildkit.dockerfile.v0)COPY /usr/local/bin/uvicorn /usr/local/bin/uvicorn # buildkit
2024-07-10 20:46:48 UTC (buildkit.dockerfile.v0)WORKDIR /api
2024-07-10 20:46:48 UTC (buildkit.dockerfile.v0)ENV PYTHONFAULTHANDLER=1 PYTHONUNBUFFERED=True PORT=8000 PIP_ROOT_USER_ACTION=ignore N_WORKERS=1 N_JOBS_PER_WORKER=10
2024-07-10 20:46:48 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD" "python" "/api/healthcheck.py"] "5s" "2s" "0s" "0s" '\x05'}
2024-07-10 20:46:48 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh" "-c" "exec uvicorn langgraph_api.server:app --log-config /api/logging.json --host 0.0.0.0 --port $PORT"]
Please be careful as this will not just delete the reference but also the actual content!
For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.