Namespace
appflowyinc
Image / Tag
admin_frontend:0.9.153-amd64
Content Digest
sha256:7b91e0b65f82630d08c3be40fc48b52c1af3602bd65448fbf119ded78c48f187
Details
Created

2025-10-30 11:21:46 UTC

Size

68.9 MB

Content Digest
Labels
  • description
    AppFlowy Super Admin
  • maintainer
    AppFlowy Team
  • org.opencontainers.image.created
    2025-10-30T11:20:13.114Z
  • org.opencontainers.image.description
  • org.opencontainers.image.licenses
  • org.opencontainers.image.revision
    02cb8a596ea26847d0af9c86d7e74d12c83bb080
  • org.opencontainers.image.source
    https://github.com/AppFlowy-IO/AppFlowy-Docker-CI
  • org.opencontainers.image.title
    AppFlowy-Docker-CI
  • org.opencontainers.image.url
    https://github.com/AppFlowy-IO/AppFlowy-Docker-CI
  • org.opencontainers.image.version
    main
  • version
    0.9.153

Environment
APP_VERSION

0.9.153

NODE_ENV

production

NODE_VERSION

20.19.5

PATH

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

PORT

3000

YARN_VERSION

1.22.22


Layers

[#000] sha256:2d35ebdb57d9971fea0cac1582aa78935adf8058b2cc32db163c98822e5dfa1b - 5.26% (3.63 MB)

[#001] sha256:60e45a9660cfaebbbac9bba98180aa28b3966b7f2462d132c46f51a1f5b25a64 - 59.19% (40.8 MB)

[#002] sha256:e74e4ed823e9560b3fe51c0cab47dbfdfc4b12453604319408ec58708fb9e720 - 1.75% (1.2 MB)

[#003] sha256:da04d522c98fe12816b2bcddf8413fca73645f8fa60f287c672f58bcc7f0fa38 - 0.0% (444 Bytes)

[#004] sha256:b39cd7fc6119b3ebd9159999dc3831bcb72d553ea0f5592af496d63fcbeda60c - 0.0% (91 Bytes)

[#005] sha256:e2864a5cd21dae92674824003bc769cb8f64af55a845449ec7b81573a6033059 - 29.45% (20.3 MB)

[#006] sha256:6d5dd7a5ccb72f83a09a6e5c162dc7760e30d3aacb78782d34336e63961fea90 - 2.67% (1.84 MB)

[#007] sha256:ee4b3133c41a8f272e3502e4c967c59c32c9572a015ae1d65ad1d12e41a36a53 - 1.68% (1.16 MB)

[#008] sha256:7bde0ef469b2db51e440d132907f7b00caec9439887bf3b773d54f5297508d38 - 0.0% (1.52 KB)

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


History
2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-3.22.2-x86_64.tar.gz / # buildkit

2025-10-08 11:04:56 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-10-16 10:35:31 UTC (buildkit.dockerfile.v0)

ENV NODE_VERSION=20.19.5

2025-10-16 10:35:31 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c addgroup -g 1000 node && adduser -u 1000 -G node -s /bin/sh -D node && apk add --no-cache libstdc++ && apk add --no-cache --virtual .build-deps curl && ARCH= OPENSSL_ARCH='linux*' && alpineArch="$(apk --print-arch)" && case "${alpineArch##*-}" in x86_64) ARCH='x64' CHECKSUM="3ea6ae2833f2d75e4d84731a9c01f50eff5198d78f724fa673281468e1c2077b" OPENSSL_ARCH=linux-x86_64;; x86) OPENSSL_ARCH=linux-elf;; aarch64) OPENSSL_ARCH=linux-aarch64;; arm*) OPENSSL_ARCH=linux-armv4;; ppc64le) OPENSSL_ARCH=linux-ppc64le;; s390x) OPENSSL_ARCH=linux-s390x;; *) ;; esac && if [ -n "${CHECKSUM}" ]; then set -eu; curl -fsSLO --compressed "https://unofficial-builds.nodejs.org/download/release/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz"; echo "$CHECKSUM node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && ln -s /usr/local/bin/node /usr/local/bin/nodejs; else echo "Building from source" && apk add --no-cache --virtual .build-deps-full binutils-gold g++ gcc gnupg libgcc linux-headers make python3 py-setuptools && export GNUPGHOME="$(mktemp -d)" && for key in 5BE8A3F6C8A5C01D106C0AD820B1A390B168D356 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 CC68F5A3106FF448322E48ED27F5E38D5B0A215F 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A A363A499291CBBC940DD62E41F10027AF002F8B0 ; do { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } || { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ; done && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && gpgconf --kill all && rm -rf "$GNUPGHOME" && grep " node-v$NODE_VERSION.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xf "node-v$NODE_VERSION.tar.xz" && cd "node-v$NODE_VERSION" && ./configure && make -j$(getconf _NPROCESSORS_ONLN) V= && make install && apk del .build-deps-full && cd .. && rm -Rf "node-v$NODE_VERSION" && rm "node-v$NODE_VERSION.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt; fi && rm -f "node-v$NODE_VERSION-linux-$ARCH-musl.tar.xz" && find /usr/local/include/node/openssl/archs -mindepth 1 -maxdepth 1 ! -name "$OPENSSL_ARCH" -exec rm -rf {} \; && apk del .build-deps && node --version && npm --version && rm -rf /tmp/* # buildkit

2025-10-16 10:35:31 UTC (buildkit.dockerfile.v0)

ENV YARN_VERSION=1.22.22

2025-10-16 10:35:31 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache --virtual .build-deps-yarn curl gnupg tar && export GNUPGHOME="$(mktemp -d)" && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do { gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" && gpg --batch --fingerprint "$key"; } || { gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" && gpg --batch --fingerprint "$key"; } ; done && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && gpgconf --kill all && rm -rf "$GNUPGHOME" && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && apk del .build-deps-yarn && yarn --version && rm -rf /tmp/* # buildkit

2025-10-16 10:35:31 UTC (buildkit.dockerfile.v0)

COPY docker-entrypoint.sh /usr/local/bin/ # buildkit

2025-10-16 10:35:31 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

2025-10-16 10:35:31 UTC (buildkit.dockerfile.v0)

CMD ["node"]

2025-10-28 03:18:36 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

ARG ADMIN_FRONTEND_PORT

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

ARG PORT

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

ENV PORT=3000

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

COPY /app/apps/super/.next/standalone ./ # buildkit

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

COPY /app/apps/super/.next/static ./apps/super/.next/static # buildkit

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

COPY /app/apps/super/public ./apps/super/public # buildkit

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

COPY apps/super/docker-entrypoint.sh /docker-entrypoint.sh # buildkit

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

RUN |2 ADMIN_FRONTEND_PORT= PORT=3000 /bin/sh -c chmod +x /docker-entrypoint.sh # buildkit

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

ARG VERSION=0.9.153

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

ENV NODE_ENV=production

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

ENV APP_VERSION=0.9.153

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

LABEL version=0.9.153 description=AppFlowy Super Admin maintainer=AppFlowy Team

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

EXPOSE [3000/tcp]

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/docker-entrypoint.sh"]

2025-10-30 11:21:46 UTC (buildkit.dockerfile.v0)

CMD ["node" "apps/super/server.js"]

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