2023-04-28 19:29:19 UTC
139 MB
/app/heimdall
LSIO_FIRST_PARTYtrue
NODE_ENVproduction
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PS1$(whoami)@$(hostname):$(pwd)\$
S6_CMD_WAIT_FOR_SERVICES_MAXTIME0
TERMxterm
[#000] sha256:0f9a4ad0ae94535a27959121114597324e2d59ccc16b56e1022acaed718e805b - 3.83% (5.31 MB)
[#001] sha256:f40c7bc76fd272ddb45f6c567eea7fb88910b690f9771b8216a1a2939f3cbf45 - 3.89% (5.39 MB)
[#002] sha256:195930cf8adb1899e8eb814c2e35f897d56cad0b941e6fcb326e0d9d97656d66 - 0.0% (5.7 KB)
[#003] sha256:b3e1373787531f7ca141f0b1a97c4177e8c89e2e4f974b5aba94b3eb49ace4ee - 92.28% (128 MB)
[#004] sha256:310bbd638199fd5aeccb929acf40b4cfdf89fd11c04edeb1ed1d0bcfce314a2f - 0.0% (921 Bytes)
COPY /root-out/ / # buildkit
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 92915920-ls55 Build-date:- 2023-04-25T12:58:10-05:00
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)RUN |2 BUILD_DATE=2023-04-25T12:58:10-05:00 VERSION=92915920-ls55 /bin/sh -c echo "**** install runtime packages ****" && apk add --no-cache bash ca-certificates coreutils curl procps shadow tzdata && echo "**** create abc user and make our folders ****" && groupmod -g 1000 users && useradd -u 911 -U -d /config -s /bin/false abc && usermod -G users abc && mkdir -p /app /config /defaults && echo "**** add qemu ****" && curl -o /usr/bin/qemu-aarch64-static -L "https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static" && chmod +x /usr/bin/qemu-aarch64-static && echo "**** cleanup ****" && rm -rf /tmp/* # buildkit
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
2023-04-25 17:59:44 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)ENV LSIO_FIRST_PARTY=true
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)ARG VERSION
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)ARG HEIMDALL_RELEASE
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 882cd132-ls54 Build-date:- 2023-04-28T19:24:03+00:00
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)ENV HOME=/app/heimdall NODE_ENV=production
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2023-04-28T19:24:03+00:00 VERSION=882cd132-ls54 HEIMDALL_RELEASE=882cd132 /bin/sh -c echo "**** install build packages ****" && apk add --no-cache --virtual=build-dependencies curl g++ make python2 && echo "**** install runtime packages ****" && apk add --no-cache nodejs npm && echo "**** install heimdall ****" && mkdir -p /app/heimdall && if [ -z ${HEIMDALL_RELEASE+x} ]; then HEIMDALL_RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/heimdalljs/commits/master" | awk '/sha/{print $4;exit}' FS='[""]'); fi && curl -o /tmp/heimdalljs.tar.gz -L "https://github.com/linuxserver/heimdalljs/archive/${HEIMDALL_RELEASE}.tar.gz" && tar xf /tmp/heimdalljs.tar.gz -C /app/heimdall/ --strip-components=1 && cd /app/heimdall && NODE_ENV="development" npm install && cp .env.example .env && npm run build && echo "**** cleanup ****" && npm prune --production && apk del --purge build-dependencies && rm -rf /root/.cache /tmp/* # buildkit
2023-04-28 19:29:19 UTC (buildkit.dockerfile.v0)COPY root/ / # buildkit
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.