{"architecture":"amd64","created":"2026-02-06T18:10:49.063303394Z","history":[{"created":"2025-10-20T00:00:00Z","created_by":"# debian.sh --arch 'amd64' out/ 'trixie' '@1760918400'","comment":"debuerreotype 0.16"},{"created":"2025-10-31T23:14:26.312609154Z","created_by":"ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","comment":"buildkit.dockerfile.v0","empty_layer":true},{"created":"2025-10-31T23:14:26.312609154Z","created_by":"ENV LANG=C.UTF-8","comment":"buildkit.dockerfile.v0","empty_layer":true},{"created":"2025-10-31T23:14:26.312609154Z","created_by":"RUN /bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tca-certificates \t\tnetbase \t\ttzdata \t; \tapt-get dist-clean # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2025-10-31T23:14:26.312609154Z","created_by":"ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568","comment":"buildkit.dockerfile.v0","empty_layer":true},{"created":"2025-10-31T23:14:26.312609154Z","created_by":"ENV PYTHON_VERSION=3.9.25","comment":"buildkit.dockerfile.v0","empty_layer":true},{"created":"2025-10-31T23:14:26.312609154Z","created_by":"ENV PYTHON_SHA256=00e07d7c0f2f0cc002432d1ee84d2a40dae404a99303e3f97701c10966c91834","comment":"buildkit.dockerfile.v0","empty_layer":true},{"created":"2025-10-31T23:17:22.934578465Z","created_by":"RUN /bin/sh -c set -eux; \t\tsavedAptMark=\"$(apt-mark showmanual)\"; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tdpkg-dev \t\tgcc \t\tgnupg \t\tlibbluetooth-dev \t\tlibbz2-dev \t\tlibc6-dev \t\tlibdb-dev \t\tlibffi-dev \t\tlibgdbm-dev \t\tliblzma-dev \t\tlibncursesw5-dev \t\tlibreadline-dev \t\tlibsqlite3-dev \t\tlibssl-dev \t\tmake \t\ttk-dev \t\tuuid-dev \t\twget \t\txz-utils \t\tzlib1g-dev \t; \t\twget -O python.tar.xz \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz\"; \techo \"$PYTHON_SHA256 *python.tar.xz\" | sha256sum -c -; \twget -O python.tar.xz.asc \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc\"; \tGNUPGHOME=\"$(mktemp -d)\"; export GNUPGHOME; \tgpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \"$GPG_KEY\"; \tgpg --batch --verify python.tar.xz.asc python.tar.xz; \tgpgconf --kill all; \trm -rf \"$GNUPGHOME\" python.tar.xz.asc; \tmkdir -p /usr/src/python; \ttar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \trm python.tar.xz; \t\tcd /usr/src/python; \tgnuArch=\"$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)\"; \t./configure \t\t--build=\"$gnuArch\" \t\t--enable-loadable-sqlite-extensions \t\t--enable-optimizations \t\t--enable-option-checking=fatal \t\t--enable-shared \t\t--with-ensurepip \t; \tnproc=\"$(nproc)\"; \tEXTRA_CFLAGS=\"$(dpkg-buildflags --get CFLAGS)\"; \tLDFLAGS=\"$(dpkg-buildflags --get LDFLAGS)\"; \tLDFLAGS=\"${LDFLAGS:--Wl},--strip-all\"; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:-}\" \t; \trm python; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:--Wl},-rpath='\\$\\$ORIGIN/../lib'\" \t\tpython \t; \tmake install; \t\tcd /; \trm -rf /usr/src/python; \t\tfind /usr/local -depth \t\t\\( \t\t\t\\( -type d -a \\( -name test -o -name tests -o -name idle_test \\) \\) \t\t\t-o \\( -type f -a \\( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \\) \\) \t\t\\) -exec rm -rf '{}' + \t; \t\tldconfig; \t\tapt-mark auto '.*' \u003e /dev/null; \tapt-mark manual $savedAptMark; \tfind /usr/local -type f -executable -not \\( -name '*tkinter*' \\) -exec ldd '{}' ';' \t\t| awk '/=\u003e/ { so = $(NF-1); if (index(so, \"/usr/local/\") == 1) { next }; gsub(\"^/(usr/)?\", \"\", so); printf \"*%s\\n\", so }' \t\t| sort -u \t\t| xargs -rt dpkg-query --search \t\t| awk 'sub(\":$\", \"\", $1) { print $1 }' \t\t| sort -u \t\t| xargs -r apt-mark manual \t; \tapt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \tapt-get dist-clean; \t\texport PYTHONDONTWRITEBYTECODE=1; \tpython3 --version; \t\tpip3 install \t\t--disable-pip-version-check \t\t--no-cache-dir \t\t--no-compile \t\t'setuptools==79.0.1' \t\t'wheel\u003c0.46' \t; \tpip3 --version # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2025-10-31T23:17:23.052787588Z","created_by":"RUN /bin/sh -c set -eux; \tfor src in idle3 pip3 pydoc3 python3 python3-config; do \t\tdst=\"$(echo \"$src\" | tr -d 3)\"; \t\t[ -s \"/usr/local/bin/$src\" ]; \t\t[ ! -e \"/usr/local/bin/$dst\" ]; \t\tln -svT \"$src\" \"/usr/local/bin/$dst\"; \tdone # buildkit","comment":"buildkit.dockerfile.v0"},{"created":"2025-10-31T23:17:23.052787588Z","created_by":"CMD [\"python3\"]","comment":"buildkit.dockerfile.v0","empty_layer":true},{"author":"kaniko","created":"0001-01-01T00:00:00Z","created_by":"WORKDIR /app"},{"author":"kaniko","created":"0001-01-01T00:00:00Z","created_by":"RUN apt-get update \u0026\u0026 apt-get install -y     gcc     git     \u0026\u0026 rm -rf /var/lib/apt/lists/*"},{"author":"kaniko","created":"0001-01-01T00:00:00Z","created_by":"COPY requirements.txt ."},{"author":"kaniko","created":"0001-01-01T00:00:00Z","created_by":"RUN pip install --no-cache-dir -r requirements.txt"},{"author":"kaniko","created":"0001-01-01T00:00:00Z","created_by":"COPY . ."},{"author":"kaniko","created":"0001-01-01T00:00:00Z","created_by":"RUN mkdir -p /app/data"}],"os":"linux","rootfs":{"type":"layers","diff_ids":["sha256:d7c97cb6f1fe7cae982649e9f55efe201212e8acaa64bd668c083b204e4efd4c","sha256:4f237755fbae41472cb9e0f874fa97abb8d684f8fdcc6bd485edc8b6267a9c93","sha256:298992e09a0315a8f26375a553f216f5fad3decf392956fd2de5ef7aa1f8dfea","sha256:c8f6b54339a8b44071408bd33dd69a9dc7db2ed9cdbf7c533ba09efecda5f33f","sha256:3a96d828ef2e2ac8e34d66ff180540e71578a87bc55b8646afde21c426032cdf","sha256:8897f090ada5c40175350c03470dd04426dc1f8256d2b459ff965cf9de7092f1","sha256:e01e0a86d1c2adda6fa9fa16df3730d6aa603c72f44b2bf2846d06e6fb05989c","sha256:ea33ac524d17af2221ba69f729a8343180ff34fbf15938bed52573f7ecb77e3e","sha256:bb1c8a84c62c84327fb0c4405c755b7fd5ef931c687dfe1b9b3070e90bc5bf93","sha256:913a2dce84c26693e79de0bb6a85d69863141dd7aeefe3993a7cb361a119fa90"]},"config":{"Cmd":["python","app.py"],"Healthcheck":{"Test":["CMD-SHELL","curl -f http://localhost:5000/ || exit 1"],"Interval":30000000000,"Timeout":10000000000,"StartPeriod":5000000000,"Retries":3},"Env":["PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin","LANG=C.UTF-8","GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568","PYTHON_VERSION=3.9.25","PYTHON_SHA256=00e07d7c0f2f0cc002432d1ee84d2a40dae404a99303e3f97701c10966c91834","FLASK_APP=app.py","FLASK_ENV=production"],"WorkingDir":"/app","ExposedPorts":{"5000/tcp":{}}}}