Namespace
supabase
Image / Tag
studio:20250120-9d534c9_arm64
Content Digest
sha256:e59851cd969d201f86feed339c04f7d60dda014402ed6438eee628b99e3bd243
Details
Created

2025-01-20 04:13:01 UTC

Size

224 MB

Content Digest
Environment
NODE_VERSION

20.18.1

PATH

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

PNPM_HOME

/pnpm

YARN_VERSION

1.22.22


Layers

[#000] sha256:7ce705000c390df8b2edde0e8b9c65a6677da4503a8f8fd89b355a3f827a275f - 11.93% (26.7 MB)

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

[#002] sha256:7525cf29e35f24474f87e2d17dc4d7c20b3c6c1ca7fffbcb5d4eeb2a6aa58a91 - 17.32% (38.8 MB)

[#003] sha256:b313f531029241d2fca507e007300f50a7cba2896e953b3fd4677960121e89f9 - 0.73% (1.63 MB)

[#004] sha256:f553f9dc4d06a7919c2e54bac7daedf7a4bb89f12e5883b924c4962dce88a8e0 - 0.0% (446 Bytes)

[#005] sha256:e31ae19b556f8546228e57bad0dafc6d0078bb9fe3f8c5914f1212be2b7ca54f - 0.0% (266 Bytes)

[#006] sha256:4731a9c3a8c9078ad2e4213cfd20534818f8e45233285074a530545ac11a92f8 - 52.9% (119 MB)

[#007] sha256:b4c9254ff1e43c1705ee98c533e00a9dd6fc19c49aa27cb1d3c6770a25ea7662 - 0.0% (125 Bytes)

[#008] sha256:8a299cce2d627b2a2b8c1eaecc2cad154a0b0097cc283cd605922976bae7ae04 - 4.34% (9.74 MB)

[#009] sha256:6ed6fff9805dc77320a2caf0b270382f96ee3ede116e293ba98cacc8bc6c9591 - 9.4% (21.1 MB)

[#010] sha256:dd7f0992a1ffe9968ba615dc858157fa69830f6240db124ec4c6ea3a92182e12 - 3.38% (7.58 MB)


History
2024-11-20 16:05:40 UTC (debuerreotype 0.15)

# debian.sh --arch 'arm64' out/ 'bookworm' '@1736726400'

2024-11-20 16:05:40 UTC (buildkit.dockerfile.v0)

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

2024-11-20 16:05:40 UTC (buildkit.dockerfile.v0)

ENV NODE_VERSION=20.18.1

2024-11-20 16:05:40 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';; i386) ARCH='x86' OPENSSL_ARCH='linux-elf';; *) 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 C0D6248439F1D5604AAFFB4021D900FFDB233756 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 CC68F5A3106FF448322E48ED27F5E38D5B0A215F 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A A363A499291CBBC940DD62E41F10027AF002F8B0 ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$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 # buildkit

2024-11-20 16:05:40 UTC (buildkit.dockerfile.v0)

ENV YARN_VERSION=1.22.22

2024-11-20 16:05:40 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 --keyserver keyserver.ubuntu.com --recv-keys "$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

2024-11-20 16:05:40 UTC (buildkit.dockerfile.v0)

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

2024-11-20 16:05:40 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

2024-11-20 16:05:40 UTC (buildkit.dockerfile.v0)

CMD ["node"]

2025-01-20 04:06:27 UTC (buildkit.dockerfile.v0)

ENV PNPM_HOME=/pnpm

2025-01-20 04:06:27 UTC (buildkit.dockerfile.v0)

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

2025-01-20 04:06:27 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c corepack enable # buildkit

2025-01-20 04:06:45 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apt-get update -qq && apt-get install -y --no-install-recommends git python3 ca-certificates build-essential && rm -rf /var/lib/apt/lists/* && update-ca-certificates # buildkit

2025-01-20 04:06:45 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2025-01-20 04:13:01 UTC (buildkit.dockerfile.v0)

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

2025-01-20 04:13:01 UTC (buildkit.dockerfile.v0)

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

2025-01-20 04:13:01 UTC (buildkit.dockerfile.v0)

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

2025-01-20 04:13:01 UTC (buildkit.dockerfile.v0)

EXPOSE map[3000/tcp:{}]

2025-01-20 04:13:01 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["docker-entrypoint.sh"]

2025-01-20 04:13:01 UTC (buildkit.dockerfile.v0)

HEALTHCHECK &{["CMD-SHELL" "node -e \"fetch('http://localhost:3000/api/profile').then((r) => {if (r.status !== 200) throw new Error(r.status)})\""] "5s" "5s" "0s" "0s" '\x03'}

2025-01-20 04:13:01 UTC (buildkit.dockerfile.v0)

CMD ["node" "apps/studio/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