Namespace
appflowyinc
Image / Tag
appflowy_ai:0.6.13-arm64v8
Content Digest
sha256:c51564c87c59aaa3b135c98aab8769b7d226a7362918bb807d68883d9ddc45bf
Details
Created

2024-10-17 09:49:49 UTC

Size

432 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-10-17T09:46:00.897Z
  • org.opencontainers.image.description
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    52d57264ead8d33ac31fc34a9963214e3d74f2f6
  • org.opencontainers.image.source
    https://github.com/AppFlowy-IO/AppFlowy-AI
  • org.opencontainers.image.title
    AppFlowy-AI
  • org.opencontainers.image.url
    https://github.com/AppFlowy-IO/AppFlowy-AI
  • org.opencontainers.image.version
    0.6.13

Environment
GPG_KEY

7169605F62C751356D054A26A821E680E5FA6305

LANG

C.UTF-8

PATH

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

PYTHONPATH

/usr/src/app

PYTHONUNBUFFERED

1

PYTHON_VERSION

3.12.7


Layers

[#000] sha256:14c9d9d199323cbf0a4c2347a8af85f2875c1f2c26a1558fd34dfca7a26cff22 - 6.43% (27.8 MB)

[#001] sha256:d847ad1879f2202660d37d9bedf1b8986116079d578b010e46b6917facf23dd5 - 0.73% (3.18 MB)

[#002] sha256:d0c776d0ffa49be3aa16dd58ed3af05426dac69f7e79c1f40677f0bb9f51b626 - 2.95% (12.8 MB)

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

[#004] sha256:f3d43cbcac1c5656d07131829fc93d1cc434428fcc737a7668a50a0bf0f7bcd5 - 0.0% (133 Bytes)

[#005] sha256:69407253da13bbc9c5df1acd6611dcc82b2d3abd49ea9620ab3aab075ac5a4d1 - 17.43% (75.4 MB)

[#006] sha256:ab2de07164575ab36e3189b650ccb4c576f397f9b549e6a56a65adad3745f508 - 5.0% (21.6 MB)

[#007] sha256:b0c5bcd3320a9f8707f1803ca2632f7d7f98b2d06aeef0fce591738a4314333f - 0.48% (2.08 MB)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#009] sha256:7bee114d4a0a81ba7de602b429a4f955ce045a045cbdf482bfe3d9737681e376 - 66.97% (290 MB)


History
2024-09-27 04:38:17 UTC

/bin/sh -c #(nop) ADD file:28df1cb6a6576d40b5226851d0a6a76ffd5d1c94644ee441490b74a90f29f425 in /

2024-09-27 04:38:18 UTC

/bin/sh -c #(nop) CMD ["bash"]

2024-10-01 10:04:25 UTC (buildkit.dockerfile.v0)

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

2024-10-01 10:04:25 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-10-01 10:04:25 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-10-01 10:04:25 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305

2024-10-01 10:04:25 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.12.7

2024-10-01 10:04:25 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 --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:-}" "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/*; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit

2024-10-01 10:04:25 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

2024-10-01 10:04:25 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-10-17 09:46:05 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/src/app

2024-10-17 09:47:13 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update && apt-get install -y gcc libpq-dev && rm -rf /var/lib/apt/lists/* # buildkit

2024-10-17 09:48:09 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir poetry # buildkit

2024-10-17 09:48:09 UTC (buildkit.dockerfile.v0)

COPY . . # buildkit

2024-10-17 09:48:09 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/src/app/server

2024-10-17 09:49:49 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c poetry config virtualenvs.create false && poetry install --no-root # buildkit

2024-10-17 09:49:49 UTC (buildkit.dockerfile.v0)

ENV PYTHONUNBUFFERED=1

2024-10-17 09:49:49 UTC (buildkit.dockerfile.v0)

ENV PYTHONPATH=/usr/src/app

2024-10-17 09:49:49 UTC (buildkit.dockerfile.v0)

EXPOSE map[5001/tcp:{}]

2024-10-17 09:49:49 UTC (buildkit.dockerfile.v0)

CMD ["sh" "-c" "uvicorn main:app --host 0.0.0.0 --port ${APPFLOWY_AI_SERVER_PORT:-5001}"]

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.

Delete