Namespace
motricseven7
Image / Tag
snowluma:dev-d879ba10274e
Content Digest
sha256:9dae543ff35b0a377d57f967062dfe0103977d81bcb078ecfcbf0d64ed83dd34
Details
Created

2026-08-17 13:33:45 UTC

Size

692 MB

Content Digest
Environment
DEBIAN_FRONTEND

noninteractive

DISPLAY

:1

NODE_VERSION

22.23.2

PATH

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

SNOWLUMA_DATA

/app/data

SNOWLUMA_EXTRA_QQ_HOMES

SNOWLUMA_GID

1000

SNOWLUMA_HOME

/app/runtime

SNOWLUMA_HOOK_AUTOLOAD

1

SNOWLUMA_LOG_LEVEL

info

SNOWLUMA_QQ_FLAGS

--disable-gpu --disable-software-rasterizer --disable-gpu-compositing

SNOWLUMA_SCREEN

1920x1080x24

SNOWLUMA_UID

1000

SNOWLUMA_WEBUI_PORT

5099

TZ

Asia/Shanghai

VNC_PASSWD

vncpasswd

YARN_VERSION

1.22.22


Layers

[#000] sha256:039e6f9f9752f74a3ff4a6a224f64c7c864da16ed98f882107704328f41b9c42 - 3.89% (26.9 MB)

[#001] sha256:5404bc2cc13c8aefe11c6d1d4bc40a30e07879b45d93b485c1d72317488d3b04 - 0.0% (3.23 KB)

[#002] sha256:555d3507458376894ba4e9c5ea63da2b3d9dd3e9765e756483d94438eb840440 - 6.89% (47.6 MB)

[#003] sha256:8f99eb9866f3244aac3800fb9f992ecc69aef9894d3d0c29be5b09c4ae0e40e5 - 0.24% (1.63 MB)

[#004] sha256:c0ed9f2d0e0e040af91270b0d33de349f4769825f106751ed52d7105fd1870bf - 0.0% (445 Bytes)

[#005] sha256:d151c21134357f3f82f302c5d2ef5578eab7782bf2c3198cadffe05f8c830564 - 16.58% (115 MB)

[#006] sha256:2c9421cb715204d82923940020d9c5cf2df8e3361df5aa43ead694972f27d5cc - 22.61% (156 MB)

[#007] sha256:0f9d44497cb7d364952ee4e72e65b14e3bbb482e99214f3489b423942cf63203 - 1.9% (13.2 MB)

[#008] sha256:3094f40c4bffe1e52eb08574ef179f2a82a22a598ea26d4dddad13a5db2c0116 - 10.25% (70.9 MB)

[#009] sha256:b74801df17d6fe70f2e0dcb9272d801615ac82d21d524d2795e27776019b9bb5 - 0.23% (1.61 MB)

[#010] sha256:eefbcc849519ae67544e20447e2be15cc898d9a5ba5cec9668735758afc32da6 - 36.83% (255 MB)

[#011] sha256:60060723266539cb2be434ad0aac86982a4392fcb913e24bd69731a74e4a1f15 - 0.57% (3.94 MB)

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


History
2026-08-03 00:00:00 UTC (debuerreotype 0.17)

# debian.sh --arch 'amd64' out/ 'bookworm' '@1785715200'

2026-08-05 00:48:57 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit

2026-08-05 00:49:18 UTC (buildkit.dockerfile.v0)

ENV NODE_VERSION=22.23.2

2026-08-05 00:49:18 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64' OPENSSL_ARCH='linux-x86_64';; ppc64el) ARCH='ppc64le' OPENSSL_ARCH='linux-ppc64le';; s390x) ARCH='s390x' OPENSSL_ARCH='linux*-s390x';; arm64) ARCH='arm64' OPENSSL_ARCH='linux-aarch64';; armhf) ARCH='armv7l' OPENSSL_ARCH='linux-armv4';; *) echo "unsupported architecture"; exit 1 ;; esac && set -ex && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr xz-utils libatomic1 --no-install-recommends && rm -rf /var/lib/apt/lists/* && export GNUPGHOME="$(mktemp -d)" && for key in 5BE8A3F6C8A5C01D106C0AD820B1A390B168D356 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 CC68F5A3106FF448322E48ED27F5E38D5B0A215F 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A A363A499291CBBC940DD62E41F10027AF002F8B0 655F3B5C1FB3FA8D1A0CA6BDE4A7D232B936D2FD ; 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-linux-$ARCH.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-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && find /usr/local/include/node/openssl/archs -mindepth 1 -maxdepth 1 ! -name "$OPENSSL_ARCH" -exec rm -rf {} \; && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print 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 && ln -s /usr/local/bin/node /usr/local/bin/nodejs && node --version && npm --version && rm -rf /tmp/* # buildkit

2026-08-05 00:49:18 UTC (buildkit.dockerfile.v0)

ENV YARN_VERSION=1.22.22

2026-08-05 00:49:30 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr --no-install-recommends && rm -rf /var/lib/apt/lists/* && 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 && apt-mark auto '.*' > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; } && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print 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 && yarn --version && rm -rf /tmp/* # buildkit

2026-08-05 00:49:30 UTC (buildkit.dockerfile.v0)

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

2026-08-05 00:49:30 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

2026-08-05 00:49:30 UTC (buildkit.dockerfile.v0)

CMD ["node"]

2026-08-17 13:32:34 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH=amd64

2026-08-17 13:32:34 UTC (buildkit.dockerfile.v0)

ARG QQ_VERSION=3.2.31-51102

2026-08-17 13:32:34 UTC (buildkit.dockerfile.v0)

ARG QQ_CHANNEL=c390e792

2026-08-17 13:32:34 UTC (buildkit.dockerfile.v0)

ARG QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta

2026-08-17 13:32:34 UTC (buildkit.dockerfile.v0)

ENV DEBIAN_FRONTEND=noninteractive VNC_PASSWD=vncpasswd TZ=Asia/Shanghai SNOWLUMA_HOME=/app/runtime SNOWLUMA_DATA=/app/data SNOWLUMA_WEBUI_PORT=5099 SNOWLUMA_UID=1000 SNOWLUMA_GID=1000 SNOWLUMA_LOG_LEVEL=info SNOWLUMA_SCREEN=1920x1080x24 SNOWLUMA_HOOK_AUTOLOAD=1 SNOWLUMA_EXTRA_QQ_HOMES= SNOWLUMA_QQ_FLAGS=--disable-gpu --disable-software-rasterizer --disable-gpu-compositing DISPLAY=:1

2026-08-17 13:32:34 UTC (buildkit.dockerfile.v0)

RUN |4 TARGETARCH=amd64 QQ_VERSION=3.2.31-51102 QQ_CHANNEL=c390e792 QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta /bin/sh -c rm -f /etc/apt/apt.conf.d/docker-clean && echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache && apt-get update && apt-get install -y --no-install-recommends aria2 ca-certificates curl dbus-user-session git gnutls-bin iproute2 libcap2-bin procps supervisor tzdata unzip xdg-utils && echo "${TZ}" > /etc/timezone && ln -sf "/usr/share/zoneinfo/${TZ}" /etc/localtime && setcap cap_sys_ptrace+ep /usr/local/bin/node && groupadd --gid 1001 snowluma && useradd --no-log-init --uid 1001 --gid 1001 --home-dir /app --shell /bin/bash snowluma && install -d -o snowluma -g snowluma "${SNOWLUMA_HOME}" "${SNOWLUMA_DATA}" /app/.cache /app/.config /app/.local/share && mkdir -p /etc/supervisor/conf.d # buildkit

2026-08-17 13:32:58 UTC (buildkit.dockerfile.v0)

RUN |4 TARGETARCH=amd64 QQ_VERSION=3.2.31-51102 QQ_CHANNEL=c390e792 QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ffmpeg fonts-wqy-zenhei # buildkit

2026-08-17 13:33:02 UTC (buildkit.dockerfile.v0)

RUN |4 TARGETARCH=amd64 QQ_VERSION=3.2.31-51102 QQ_CHANNEL=c390e792 QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libasound2 libatspi2.0-0 libgbm1 libgtk-3-0 libnotify4 libnss3 libsecret-1-0 # buildkit

2026-08-17 13:33:20 UTC (buildkit.dockerfile.v0)

RUN |4 TARGETARCH=amd64 QQ_VERSION=3.2.31-51102 QQ_CHANNEL=c390e792 QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta /bin/sh -c apt-get update && apt-get install -y --no-install-recommends fluxbox openbox x11vnc xorg xvfb # buildkit

2026-08-17 13:33:21 UTC (buildkit.dockerfile.v0)

RUN |4 TARGETARCH=amd64 QQ_VERSION=3.2.31-51102 QQ_CHANNEL=c390e792 QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta /bin/sh -c set -eux; git clone --depth=1 https://github.com/novnc/noVNC.git /opt/noVNC; git clone --depth=1 https://github.com/novnc/websockify.git /opt/noVNC/utils/websockify; cp /opt/noVNC/vnc.html /opt/noVNC/index.html; rm -rf /tmp/* /var/tmp/* # buildkit

2026-08-17 13:33:45 UTC (buildkit.dockerfile.v0)

RUN |4 TARGETARCH=amd64 QQ_VERSION=3.2.31-51102 QQ_CHANNEL=c390e792 QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta /bin/sh -c set -eux; qq_arch="$(dpkg --print-architecture)"; case "${qq_arch}" in amd64|arm64) ;; *) echo "Unsupported Debian architecture: ${qq_arch}" >&2; exit 1 ;; esac; apt-get update; aria2c --check-certificate=false -x16 -s16 -o /tmp/linuxqq.deb "${QQ_BASE_URL}/${QQ_CHANNEL}/linuxqq_${QQ_VERSION}_${qq_arch}.deb"; dpkg -i /tmp/linuxqq.deb || apt-get -f install -y --no-install-recommends; rm -f /tmp/linuxqq.deb; chmod 777 /opt/QQ # buildkit

2026-08-17 13:33:45 UTC (buildkit.dockerfile.v0)

RUN |4 TARGETARCH=amd64 QQ_VERSION=3.2.31-51102 QQ_CHANNEL=c390e792 QQ_BASE_URL=https://qqdl.gtimg.cn/qqfile/QQNT/9.9.32/beta /bin/sh -c install -m 644 /tmp/supervisord.conf /etc/supervisord.conf && install -m 755 /tmp/start.sh /root/start.sh && tar -xzf /tmp/framework.tar.gz -C "${SNOWLUMA_HOME}" && chown -R snowluma:snowluma "${SNOWLUMA_HOME}" && case "$(dpkg --print-architecture)" in amd64) native_arch="x64" ;; arm64) native_arch="arm64" ;; *) echo "Unsupported Debian architecture: $(dpkg --print-architecture)" >&2; exit 1 ;; esac && test -f "${SNOWLUMA_HOME}/index.mjs" && test -f "${SNOWLUMA_HOME}/native/snowluma-linux-${native_arch}.node" && test -f "${SNOWLUMA_HOME}/native/snowluma-linux-${native_arch}.so" && test -f "${SNOWLUMA_HOME}/native/websocket-linux-${native_arch}.node" && forbidden_dir="$(find "${SNOWLUMA_HOME}" -type d -iname '*snowluma*' -print -quit)" && if [ -n "${forbidden_dir}" ]; then echo "Framework archive contains a forbidden directory: ${forbidden_dir}" >&2; exit 1; fi # buildkit

2026-08-17 13:33:45 UTC (buildkit.dockerfile.v0)

WORKDIR /app/data

2026-08-17 13:33:45 UTC (buildkit.dockerfile.v0)

EXPOSE [3000/tcp 3001/tcp 5099/tcp 5900/tcp 6081/tcp]

2026-08-17 13:33:45 UTC (buildkit.dockerfile.v0)

VOLUME [/app/data /app/.config /app/.local/share]

2026-08-17 13:33:45 UTC (buildkit.dockerfile.v0)

CMD ["/root/start.sh"]

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