Namespace
supabase
Image / Tag
postgres-meta:v0.78.1
Content Digest
sha256:18a59fc9ac9ab8d133a0b2f89d256131c770fcc1b7629537aa18396efe9a0b60
Details
Created

2024-02-20 18:04:59 UTC

Size

90.7 MB

Content Digest
Environment
NODE_VERSION

20.11.1

PATH

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

PG_META_PORT

8080

YARN_VERSION

1.22.19


Layers

[#000] sha256:e1caac4eb9d2ec24aa3618e5992208321a92492aef5fef5eb9e470895f771c56 - 30.62% (27.8 MB)

[#001] sha256:6e4d260b7fd8f82e7e2c52fe4ad99468397055eb2e489a37dbbcd36ba82f936f - 0.0% (3.27 KB)

[#002] sha256:87a901ded22b5b8a07c0a48fe7d0494b73b3fc0599694128a4ed3f76a0559c22 - 42.64% (38.7 MB)

[#003] sha256:fb54ee93c1ee920ba4c8a1672d3002645c00dfeb15a62a662b687b74316a2367 - 2.81% (2.55 MB)

[#004] sha256:6d24a325c4fd56baa0a7487ef98943b9c8968ec5030e405ca7e645d4d57c8911 - 0.0% (450 Bytes)

[#005] sha256:e49bc85c6c881fa9e0dae677e97d7ba01db7af307cd2cc13e5a6161ffa8b57e5 - 3.68% (3.34 MB)

[#006] sha256:05fb962818dffc9f7d3409e863f4ee1e7e58968e9129e268c1c6f69fc485c437 - 0.0% (131 Bytes)

[#007] sha256:f4b6362fdb39f24821aadcd18a0d7b00400eea2f55f113fd60d6fa61c6dd03ff - 20.16% (18.3 MB)

[#008] sha256:b0e7d957019b1c30e29a84f84cc78c1ebca74bcb594874114a43c3511166a61f - 0.09% (82 KB)

[#009] sha256:097033a004683bd82cedd2f19656a5c1f807d1a58a48c0d49b30f262d12516ff - 0.0% (1.14 KB)


History
2024-02-13 00:37:22 UTC

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

2024-02-13 00:37:22 UTC

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

2024-02-13 08:11:47 UTC

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

2024-02-15 22:55:44 UTC

/bin/sh -c #(nop) ENV NODE_VERSION=20.11.1

2024-02-15 22:56:12 UTC

/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 4ED778F539E3634C779C87C6D7062848A1AB005C 141F07595B7B3FFE74309A937405533BE57C7D57 74F12602B6F1C4E913FAA37AD3A89613643B6201 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 61FC681DFB92A079F1685E77973F295594EC4689 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 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

2024-02-15 22:56:12 UTC

/bin/sh -c #(nop) ENV YARN_VERSION=1.22.19

2024-02-15 22:56:28 UTC

/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

2024-02-15 22:56:28 UTC

/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/

2024-02-15 22:56:28 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2024-02-15 22:56:28 UTC

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

2024-02-20 06:54:59 UTC (buildkit.dockerfile.v0)

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

2024-02-20 06:55:01 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/src/app

2024-02-20 06:55:31 UTC (buildkit.dockerfile.v0)

COPY /usr/src/app/node_modules node_modules # buildkit

2024-02-20 18:04:59 UTC (buildkit.dockerfile.v0)

COPY /usr/src/app/dist dist # buildkit

2024-02-20 18:04:59 UTC (buildkit.dockerfile.v0)

COPY package.json ./ # buildkit

2024-02-20 18:04:59 UTC (buildkit.dockerfile.v0)

ENV PG_META_PORT=8080

2024-02-20 18:04:59 UTC (buildkit.dockerfile.v0)

CMD ["npm" "run" "start"]

2024-02-20 18:04:59 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{}]

2024-02-20 18:04:59 UTC (buildkit.dockerfile.v0)

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

Details
Created

2024-02-20 18:08:03 UTC

Size

90.5 MB

Content Digest
Environment
NODE_VERSION

20.11.1

PATH

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

PG_META_PORT

8080

YARN_VERSION

1.22.19


Layers

[#000] sha256:f546e941f15b76df3d982d56985432b05bc065e3923fb35be25a4d33d5c0f911 - 30.72% (27.8 MB)

[#001] sha256:06495e08993c6ac2f929ceaf57fae661d27cb5cee88284f7d8676c9bfeb579d3 - 0.0% (3.27 KB)

[#002] sha256:8f7f70c95d2f2a8261a575b6c4598b8592f7b73aba2ec6d9e5ab06313131b290 - 42.67% (38.6 MB)

[#003] sha256:250e515ba9d8865a68ad2143d554eb6c715f88704f6dde2ff2890bc2ee574288 - 2.81% (2.55 MB)

[#004] sha256:87c2f57477b26880f0a0b314365a746d7300edce11ea49279208bade0af4c94e - 0.0% (450 Bytes)

[#005] sha256:0044c75cd800ab8b08632fe5f233e6ae740d43c44d859cf7f861abd7f6d7e1a3 - 3.5% (3.17 MB)

[#006] sha256:540472185d276d737f5653bb307c3161ce49b1596d58d79d2f8e33fa9a08325c - 0.0% (132 Bytes)

[#007] sha256:540e41c9891694c4c3b2738ad95b0578e1638148e7a1485ef913f7daa350bd8a - 20.2% (18.3 MB)

[#008] sha256:7436ae596b2fc6cce64172b93bdab67196d428885c37af81ef5998c8ec7e541d - 0.09% (82.1 KB)

[#009] sha256:00f5ef75eca3e23890e4e896f1b0a57fbb533bebe0802cb5d30ed45fc8fee108 - 0.0% (1.14 KB)


History
2024-02-13 00:41:20 UTC

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

2024-02-13 00:41:20 UTC

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

2024-02-13 02:30:48 UTC

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

2024-02-16 01:26:27 UTC

/bin/sh -c #(nop) ENV NODE_VERSION=20.11.1

2024-02-16 01:26:56 UTC

/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 4ED778F539E3634C779C87C6D7062848A1AB005C 141F07595B7B3FFE74309A937405533BE57C7D57 74F12602B6F1C4E913FAA37AD3A89613643B6201 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 61FC681DFB92A079F1685E77973F295594EC4689 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 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

2024-02-16 01:26:57 UTC

/bin/sh -c #(nop) ENV YARN_VERSION=1.22.19

2024-02-16 01:27:08 UTC

/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

2024-02-16 01:27:08 UTC

/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/

2024-02-16 01:27:08 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2024-02-16 01:27:08 UTC

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

2024-02-20 18:06:41 UTC (buildkit.dockerfile.v0)

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

2024-02-20 18:06:41 UTC (buildkit.dockerfile.v0)

WORKDIR /usr/src/app

2024-02-20 18:08:03 UTC (buildkit.dockerfile.v0)

COPY /usr/src/app/node_modules node_modules # buildkit

2024-02-20 18:08:03 UTC (buildkit.dockerfile.v0)

COPY /usr/src/app/dist dist # buildkit

2024-02-20 18:08:03 UTC (buildkit.dockerfile.v0)

COPY package.json ./ # buildkit

2024-02-20 18:08:03 UTC (buildkit.dockerfile.v0)

ENV PG_META_PORT=8080

2024-02-20 18:08:03 UTC (buildkit.dockerfile.v0)

CMD ["npm" "run" "start"]

2024-02-20 18:08:03 UTC (buildkit.dockerfile.v0)

EXPOSE map[8080/tcp:{}]

2024-02-20 18:08:03 UTC (buildkit.dockerfile.v0)

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

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