2023-02-08 08:45:20 -0600
129 MB
/app/heimdall
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:7d53a9d53e4ca8bae33c811684424bd8454c1bae367a34c0515b928429ae249f - 3.97% (5.11 MB)
[#001] sha256:0ba74a1f96d7d22c671a5e83d498883023efc20284414344c054e168d5f0b1f9 - 2.91% (3.74 MB)
[#002] sha256:f24e53f41e169f779505c78a56bea425ea358852dfc179762d5d9a9d16c72066 - 0.0% (5.44 KB)
[#003] sha256:09d548e21621fb348d8f54c5e6fd4b697b14ffa865dac5b06a26f099e4a1213c - 93.12% (120 MB)
[#004] sha256:4109e1d59f3323f6610ac319297a41420c838e2ad467d39d2802b813c895be8e - 0.0% (708 Bytes)
COPY /root-out/ / # buildkit
2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)ARG BUILD_DATE
2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)ARG VERSION
2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 2446639f-ls50 Build-date:- 2022-11-29T00:32:54-06:00
2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)LABEL maintainer=TheLamer
2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)ENV PS1=$(whoami)@$(hostname):$(pwd)\$ HOME=/root TERM=xterm S6_CMD_WAIT_FOR_SERVICES_MAXTIME=0
2022-11-29 00:34:05 -0600 (buildkit.dockerfile.v0)RUN |2 BUILD_DATE=2022-11-29T00:32:54-06:00 VERSION=2446639f-ls50 /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 "**** cleanup ****" && rm -rf /tmp/* # buildkit
2022-11-29 00:34:06 -0600 (buildkit.dockerfile.v0)COPY root/ / # buildkit
2022-11-29 00:34:06 -0600 (buildkit.dockerfile.v0)ENTRYPOINT ["/init"]
2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)ARG BUILD_DATE
2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)ARG VERSION
2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)ARG HEIMDALL_RELEASE
2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)LABEL build_version=Linuxserver.io version:- 882cd132-ls49 Build-date:- 2023-02-08T08:40:03-06:00
2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)LABEL maintainer=aptalca
2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)ENV HOME=/app/heimdall NODE_ENV=production
2023-02-08 08:45:20 -0600 (buildkit.dockerfile.v0)RUN |3 BUILD_DATE=2023-02-08T08:40:03-06:00 VERSION=882cd132-ls49 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-02-08 08:45:20 -0600 (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.