Tag

dsai-ai-backend:latest
Content Digest: sha256:25cf9fe54ea7c5820345a7f515ed26a74550eda5401806a4f478a3f0375d53e3
Manifests
Details
Content Digest

sha256:abf86d4788449adc4791da07829ba252a12a6304ad694a1f9622bd29c71e72d8

Created

2026-01-10 10:39:02 UTC

Size

138 MB


Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PIP_DISABLE_PIP_VERSION_CHECK

1

PIP_NO_CACHE_DIR

1

PYTHONDONTWRITEBYTECODE

1

PYTHONUNBUFFERED

1

PYTHON_SHA256

8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78

PYTHON_VERSION

3.11.14


Layers

[#000] sha256:02d7611c4eae219af91448a4720bdba036575d3bc0356cfe12774af85daa6aff - 20.56% (28.4 MB)

[#001] sha256:1473863bb010703cc5da49db594d480fa6a17a3a7df033dfacf0c91bf1162390 - 0.89% (1.23 MB)

[#002] sha256:7cc13cb22d92060ccb92030698fd1bb23d1e7890328d424a3aa61c498ec1cb57 - 9.92% (13.7 MB)

[#003] sha256:654a090213c05af530d397771fd09de5fe6e66c2355cd1a752c763b27ff451cf - 0.0% (249 Bytes)

[#004] sha256:229ce9222ec2bdd02189ac63c97ec4e1253052cafa389d85a54e33487e7a9720 - 0.0% (93 Bytes)

[#005] sha256:f5dbe55fc2eeb070abbe095780f388a654f52899630ffbfd921bab4db6242833 - 3.5% (4.83 MB)

[#006] sha256:584064619de2cb58fd60dd5ebbeb78cf05a133b55c5161eb8664d8344f9ee7e5 - 0.0% (443 Bytes)

[#007] sha256:12dcaf6b72dfe444bfc505316739df9f076e0bf4cee72cb769735dff42eb833b - 65.05% (89.8 MB)

[#008] sha256:fb40fb28178a37064f30db99a11dd95895b797998535ed62a977f8f872cd81b7 - 0.04% (54.3 KB)

[#009] sha256:1067ff03e6a09b0da967ed8921bc728ea9ba740b91106e886a7e489698e14fd4 - 0.04% (58 KB)


History
2025-12-29 00:00:00 UTC (debuerreotype 0.17)

# debian.sh --arch 'amd64' out/ 'trixie' '@1766966400'

2025-12-30 00:37:12 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2025-12-30 00:37:12 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-12-30 00:37:12 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; apt-get dist-clean # buildkit

2025-12-30 00:37:12 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2025-12-30 00:37:12 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.14

2025-12-30 00:37:12 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78

2025-12-30 00:44:39 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 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 $(test "${gnuArch%%-*}" != 'riscv64' && echo '--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 -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==79.0.1' 'wheel<0.46' ; pip3 --version # buildkit

2025-12-30 00:44:39 UTC (buildkit.dockerfile.v0)

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

2025-12-30 00:44:39 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2026-01-09 16:28:43 UTC (buildkit.dockerfile.v0)

ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1

2026-01-09 16:28:43 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2026-01-09 16:29:00 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* && apt-get clean # buildkit

2026-01-09 16:29:00 UTC (buildkit.dockerfile.v0)

COPY requirements.txt . # buildkit

2026-01-09 16:31:43 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir -r requirements.txt # buildkit

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

COPY app/ ./app/ # buildkit

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c useradd -m -u 1000 appuser && chown -R appuser:appuser /app # buildkit

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

USER appuser

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

EXPOSE [8000/tcp]

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8000/api/ai/health || exit 1"] "30s" "10s" "5s" "0s" '\x03'}

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

CMD ["python" "-m" "uvicorn" "app.main:app" "--host" "0.0.0.0" "--port" "8000"]

Details
Content Digest

sha256:cf95823fb53af6226fab9917cdb59bd52b8e007be9eb0b74aed6113579130a66

Created

2026-01-10 10:39:02 UTC

Size

137 MB


Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PIP_DISABLE_PIP_VERSION_CHECK

1

PIP_NO_CACHE_DIR

1

PYTHONDONTWRITEBYTECODE

1

PYTHONUNBUFFERED

1

PYTHON_SHA256

8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78

PYTHON_VERSION

3.11.14


Layers

[#000] sha256:2ae15a20160209c6fd6cff4886e4ba2e666fa5bedd7b54a2c0097ea6646f0273 - 20.99% (28.7 MB)

[#001] sha256:d6c334210834c83bc9858624f5bf820185717657b3cbe19be9f21121e59de882 - 0.89% (1.21 MB)

[#002] sha256:e520b56ca06c357af399db1a3f56197a91b4dd3fd26f6cc7ebaea0a55ba9408c - 9.97% (13.7 MB)

[#003] sha256:fadbb2bb3227921a21310ec375def0aec3c9e3d199a0c84684c201e45f78a75e - 0.0% (249 Bytes)

[#004] sha256:229ce9222ec2bdd02189ac63c97ec4e1253052cafa389d85a54e33487e7a9720 - 0.0% (93 Bytes)

[#005] sha256:8f1be424375703000954ea3a18660d772fe2d1bae49eaf6eed2aa3f7c5310bb7 - 3.47% (4.76 MB)

[#006] sha256:576629fb19bf165fa549ee35c8815e88900ba2dce43478ee8cbb3ade681fe0c4 - 0.0% (443 Bytes)

[#007] sha256:ed9a9c7b3669194f63bc1f40281117d0294ffb5e307be81b90ec1bd0c76ced2d - 64.6% (88.5 MB)

[#008] sha256:fb40fb28178a37064f30db99a11dd95895b797998535ed62a977f8f872cd81b7 - 0.04% (54.3 KB)

[#009] sha256:c53eb77bcaa234189ea79a0b89a937dd6f8b164df2a26bfcd3d393ab0f2011e9 - 0.04% (58 KB)


History
2025-12-29 00:00:00 UTC (debuerreotype 0.17)

# debian.sh --arch 'arm64' out/ 'trixie' '@1766966400'

2025-12-30 00:38:15 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2025-12-30 00:38:15 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2025-12-30 00:38:15 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; apt-get dist-clean # buildkit

2025-12-30 00:38:15 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2025-12-30 00:38:15 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.14

2025-12-30 00:38:15 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SHA256=8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78

2025-12-30 00:50:05 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 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 $(test "${gnuArch%%-*}" != 'riscv64' && echo '--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 -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==79.0.1' 'wheel<0.46' ; pip3 --version # buildkit

2025-12-30 00:50:05 UTC (buildkit.dockerfile.v0)

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

2025-12-30 00:50:05 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2026-01-09 16:28:43 UTC (buildkit.dockerfile.v0)

ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1

2026-01-09 16:28:43 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2026-01-09 16:28:53 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends curl && rm -rf /var/lib/apt/lists/* && apt-get clean # buildkit

2026-01-09 16:28:54 UTC (buildkit.dockerfile.v0)

COPY requirements.txt . # buildkit

2026-01-09 16:29:44 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir -r requirements.txt # buildkit

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

COPY app/ ./app/ # buildkit

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c useradd -m -u 1000 appuser && chown -R appuser:appuser /app # buildkit

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

USER appuser

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

EXPOSE [8000/tcp]

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

HEALTHCHECK &{["CMD-SHELL" "curl -f http://localhost:8000/api/ai/health || exit 1"] "30s" "10s" "5s" "0s" '\x03'}

2026-01-10 10:39:02 UTC (buildkit.dockerfile.v0)

CMD ["python" "-m" "uvicorn" "app.main:app" "--host" "0.0.0.0" "--port" "8000"]

Danger Zone
Delete Tag

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.