Image Details

Summary
Image Reference registry:5000/codena/landing-frontend_builder:1
Digest sha256:487637fd139661ea3d52069fe1a3845aac5e070d021bb2ac6149551c045c0ab8
Media Type application/vnd.oci.image.manifest.v1+json
Image ID 4a8eab818379
Image Size 126.6 MB
Platform linux/amd64
Created On 2026-06-02 17:22:01 +0330
Manifest
config
digest sha256:4a8eab8183793554d4969004f4b27095cdd08cc8bc51aadb3320e91e0eefa15d
mediaType application/vnd.oci.image.config.v1+json
size 8 KB
layers
digest sha256:ff86ea2e5edce334d19a34fbc65d1a511aa1fc823dba1110422f991aa56b44d4
mediaType application/vnd.oci.image.layer.v1.tar+gzip
size 26.9 MB
digest sha256:e54aec64c365815cd7b91e718f00ac6e625562b1de09036b38614621b42c7582
mediaType application/vnd.oci.image.layer.v1.tar+gzip
size 3 KB
digest sha256:804d4d68057cbb26cbcde9a735148ebc6589911bad32cf9dbddb5b0ba878bf1f
mediaType application/vnd.oci.image.layer.v1.tar+gzip
size 39.5 MB
digest sha256:64cfb949317c9824fd081d55c59a7225bfe1f650c6395ba42d7ed0ccf51993d2
mediaType application/vnd.oci.image.layer.v1.tar+gzip
size 1.6 MB
digest sha256:3c02fd806613748139b8b8a14a69ae3518a1b0e863c57c35aada3b92ed87fb31
mediaType application/vnd.oci.image.layer.v1.tar+gzip
size 447 B
digest sha256:2078b0b9ab1869188ad2e6d50063396150849f635039ed6903911dfccbba3cf6
mediaType application/vnd.oci.image.layer.v1.tar+gzip
size 116 B
digest sha256:14a2cb23121af20522167aec129692705c8ced6fab7414438abbeb9f8d409541
mediaType application/vnd.oci.image.layer.v1.tar+gzip
size 58.6 MB
mediaType application/vnd.oci.image.manifest.v1+json
schemaVersion 2
Config File
architecture amd64
config
Cmd
node
Entrypoint
docker-entrypoint.sh
Env
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
NODE_VERSION=20.20.2
YARN_VERSION=1.22.22
WorkingDir /app/frontend
created 2026-06-02T13:52:01.616933717Z
history
comment debuerreotype 0.17
created 2026-04-21T00:00:00Z
created_by # debian.sh --arch 'amd64' out/ 'bookworm' '@1776729600'
comment buildkit.dockerfile.v0
created 2026-04-22T01:44:27.502328279Z
created_by RUN /bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # buildkit
comment buildkit.dockerfile.v0
created 2026-04-22T01:45:39.130182563Z
created_by ENV NODE_VERSION=20.20.2
empty_layer true
comment buildkit.dockerfile.v0
created 2026-04-22T01:45:39.130182563Z
created_by 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 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-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
comment buildkit.dockerfile.v0
created 2026-04-22T01:45:39.130182563Z
created_by ENV YARN_VERSION=1.22.22
empty_layer true
comment buildkit.dockerfile.v0
created 2026-04-22T01:45:50.819364643Z
created_by 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
comment buildkit.dockerfile.v0
created 2026-04-22T01:45:50.871696016Z
created_by COPY docker-entrypoint.sh /usr/local/bin/ # buildkit
comment buildkit.dockerfile.v0
created 2026-04-22T01:45:50.871696016Z
created_by ENTRYPOINT ["docker-entrypoint.sh"]
empty_layer true
comment buildkit.dockerfile.v0
created 2026-04-22T01:45:50.871696016Z
created_by CMD ["node"]
empty_layer true
comment buildkit.dockerfile.v0
created 2026-06-02T13:51:24.988879255Z
created_by WORKDIR /app/frontend
comment buildkit.dockerfile.v0
created 2026-06-02T13:52:01.616933717Z
created_by RUN /bin/sh -c printf '%s\n' 'deb [trusted=yes] http://linux-mirror.liara.ir/repository/debian bookworm main non-free-firmware' 'deb-src [trusted=yes] http://linux-mirror.liara.ir/repository/debian bookworm main non-free-firmware' 'deb [trusted=yes] http://linux-mirror.liara.ir/repository/debian-security bookworm-security main non-free-firmware' 'deb-src [trusted=yes] http://linux-mirror.liara.ir/repository/debian-security bookworm-security main non-free-firmware' 'deb [trusted=yes] http://linux-mirror.liara.ir/repository/debian bookworm-updates main non-free-firmware' 'deb-src [trusted=yes] http://linux-mirror.liara.ir/repository/debian bookworm-updates main non-free-firmware' > /etc/apt/sources.list && rm -f /etc/apt/sources.list.d/debian.sources && printf 'Acquire::Check-Valid-Until "false";\nAcquire::Retries "5";\n' > /etc/apt/apt.conf.d/99liara && (apt-get update || true) && apt-get install -y --no-install-recommends gcc && rm -rf /var/lib/apt/lists/* && npm config set registry https://package-mirror.liara.ir/repository/npm/ # buildkit
os linux
rootfs
diff_ids
sha256:0da811fd3ed46c38cea69079fa395a3d715dbdbdd5c8177107c450bf6332bbfa
sha256:4337a9b79b842bfe58037ff8e3040c28e8e3366009befe7bc70694869e6ad9a1
sha256:631e9f799a80c48d29ea547226d4c97b5c4e4698baadbae796fbcb67b1cbdcba
sha256:f991bccee0f1f8f692280d0e1f83f48001576c08d33c53d6a1463d5062a6ff18
sha256:d592f6b23cfaeb0a7d534376e0d4a3a32255df78a9feda01e3a6a015bada66d5
sha256:873ac07044b30c4d73b47ef0a1a7288e70876831258ee10cd60a8223eebadfbc
sha256:e99cf61e2b52c45bdf42bafe1dd049a6b5ed2499d2ee7e35539c3ec018667b15
type layers