2021-12-07 11:36:52 UTC
110 MB
14.18.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
YARN_VERSION1.22.15
[#000] sha256:ffbb094f4f9e7c61d97c2b409f3e8154e2621a5074a0087d35f1849e665d0d34 - 23.59% (25.9 MB)
[#001] sha256:24e6080d2e9cd20e11deca6d56c556983d925fcc020a63ad578ed78170607e41 - 0.0% (4.08 KB)
[#002] sha256:2c7ff7c34da697cd9b1435f2cd07b7898f20fa7690b685d1027574cffd860018 - 30.87% (33.9 MB)
[#003] sha256:e4051a7f2d1f3768ae81435747ad4d516cf1ee07656ae45a3015e4c9bec4312a - 2.39% (2.62 MB)
[#004] sha256:f5e1587475eacaed32893db7c04cff58513c6dd39efb52f13a87a610fb413a48 - 0.0% (453 Bytes)
[#005] sha256:10c09394b4029457d9f48a6be5de98456fb664fe2f490cd3dd33ce587831638e - 0.0% (99 Bytes)
[#006] sha256:69de73a0dd158cd54d49a59c4eee127327c3336ddc58bf2f66ab28183c2b0080 - 17.07% (18.7 MB)
[#007] sha256:9798d7265faf9f05a4d8027e8dbd99cbd32fbe01082965b5930d08fc27fde176 - 26.08% (28.6 MB)
/bin/sh -c #(nop) ADD file:70f893355b4ecf317b289874ea624aa52c30735086e26de45bad73f57d16757b in /
2021-12-02 02:48:43 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-12-02 10:08:02 UTC/bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node
2021-12-02 10:19:09 UTC/bin/sh -c #(nop) ENV NODE_VERSION=14.18.2
2021-12-02 10:19:44 UTC/bin/sh -c ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) 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/* && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 74F12602B6F1C4E913FAA37AD3A89613643B6201 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C DD8F2338BAE7501E3DD5AC78C273792F7D83545D A48C2BEE680E841632CD4E44F07496B3EB3C1762 108F52B48DB57BB0CC439B2997B01419BD92F80A B9E2F5981AA6E0CD28160D9FF13993A75599653C ; 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 && 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 && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | 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
2021-12-02 10:19:44 UTC/bin/sh -c #(nop) ENV YARN_VERSION=1.22.15
2021-12-02 10:20:00 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/* && 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 && 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 '/=>/ { print $(NF-1) }' | 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
2021-12-02 10:20:01 UTC/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/
2021-12-02 10:20:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-12-02 10:20:01 UTC/bin/sh -c #(nop) CMD ["node"]
2021-12-05 07:39:36 UTC (buildkit.dockerfile.v0)WORKDIR /app
2021-12-05 08:05:21 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt update && apt --yes --no-install-recommends install python3 python3-pip python3-cryptography python3-six python3-yaml python3-click python3-markdown python3-requests python3-requests-oauthlib sqlite3 iputils-ping util-linux dumb-init && pip3 --no-cache-dir install apprise==0.9.6 && rm -rf /var/lib/apt/lists/* # buildkit
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)WORKDIR /app
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)COPY /app /app # buildkit
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)EXPOSE map[3001/tcp:{}]
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)VOLUME [/app/data]
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "node extra/healthcheck.js"] "1m0s" "30s" "3m0s" '\x05'}
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/usr/bin/dumb-init" "--" "extra/entrypoint.sh"]
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)CMD ["node" "server/server.js"]
2021-12-07 11:36:57 UTC
102 MB
14.18.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
YARN_VERSION1.22.15
[#000] sha256:2aa85085c98821a25a3058f7fc2c6427064f2228ea8eac904e9e7db4dbdaa01a - 21.22% (21.7 MB)
[#001] sha256:3f7b37a2f27e96279023e9278508a68ac3263123c7e08bf53b26fef0b9d3f8b3 - 0.0% (4.07 KB)
[#002] sha256:68be26038118fe9eb96e8eae183b61bd9e38b678c4c46ea7281ffeef6742d77d - 31.42% (32.1 MB)
[#003] sha256:77365f54e2dca1f7d17c794554596ea596192c577900e54460eee48fced5c5f6 - 2.55% (2.61 MB)
[#004] sha256:0caee3f893e9f3140237dc43b236e9d6ee3e106c709b4f245fbf437d71b1d0a7 - 0.0% (452 Bytes)
[#005] sha256:10c09394b4029457d9f48a6be5de98456fb664fe2f490cd3dd33ce587831638e - 0.0% (99 Bytes)
[#006] sha256:ac597fbd9aa8f111ab24c2c7b40676784e10cafb0a3cd0f6f67fd0d1c7be42c7 - 16.98% (17.4 MB)
[#007] sha256:7640df9b642d51a424a1e109c03d4d4cc18b98bb3e86698a00e76d5782ecebc6 - 27.83% (28.5 MB)
/bin/sh -c #(nop) ADD file:7b30d743b30e84b21888f23cb7f266caba09db98b7a4c8800abebcf03d28c01d in /
2021-12-02 09:06:22 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-12-02 09:43:08 UTC/bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node
2021-12-02 09:57:30 UTC/bin/sh -c #(nop) ENV NODE_VERSION=14.18.2
2021-12-02 09:58:23 UTC/bin/sh -c ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) 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/* && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 74F12602B6F1C4E913FAA37AD3A89613643B6201 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C DD8F2338BAE7501E3DD5AC78C273792F7D83545D A48C2BEE680E841632CD4E44F07496B3EB3C1762 108F52B48DB57BB0CC439B2997B01419BD92F80A B9E2F5981AA6E0CD28160D9FF13993A75599653C ; 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 && 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 && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | 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
2021-12-02 09:58:24 UTC/bin/sh -c #(nop) ENV YARN_VERSION=1.22.15
2021-12-02 09:59:00 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/* && 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 && 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 '/=>/ { print $(NF-1) }' | 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
2021-12-02 09:59:00 UTC/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/
2021-12-02 09:59:01 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-12-02 09:59:01 UTC/bin/sh -c #(nop) CMD ["node"]
2021-12-05 07:39:36 UTC (buildkit.dockerfile.v0)WORKDIR /app
2021-12-05 08:08:38 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt update && apt --yes --no-install-recommends install python3 python3-pip python3-cryptography python3-six python3-yaml python3-click python3-markdown python3-requests python3-requests-oauthlib sqlite3 iputils-ping util-linux dumb-init && pip3 --no-cache-dir install apprise==0.9.6 && rm -rf /var/lib/apt/lists/* # buildkit
2021-12-07 11:36:57 UTC (buildkit.dockerfile.v0)WORKDIR /app
2021-12-07 11:36:57 UTC (buildkit.dockerfile.v0)COPY /app /app # buildkit
2021-12-07 11:36:57 UTC (buildkit.dockerfile.v0)EXPOSE map[3001/tcp:{}]
2021-12-07 11:36:57 UTC (buildkit.dockerfile.v0)VOLUME [/app/data]
2021-12-07 11:36:57 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "node extra/healthcheck.js"] "1m0s" "30s" "3m0s" '\x05'}
2021-12-07 11:36:57 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/usr/bin/dumb-init" "--" "extra/entrypoint.sh"]
2021-12-07 11:36:57 UTC (buildkit.dockerfile.v0)CMD ["node" "server/server.js"]
2021-12-07 11:36:52 UTC
108 MB
14.18.2
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
YARN_VERSION1.22.15
[#000] sha256:2a37a2e6ba8cbf21e3950cf7b2455f0af054667b6a35719fb2bd6070973bfa76 - 22.86% (24.7 MB)
[#001] sha256:dfa4ce27194233a9da7ce7d4b8e470e123ac4814df115029adbfd6598983681d - 0.0% (3.95 KB)
[#002] sha256:4f092a72c35ca6c6b6bca42f1b5aa6929b8815cb6d4af517de5ea15fe3763f1f - 31.43% (34 MB)
[#003] sha256:0048e2c7f578f48bc80fc213bde91a295c99e2ff9a90683485cc01b43497c412 - 2.42% (2.62 MB)
[#004] sha256:3c58152fa849d254215bcbb07e488f9e67bd6f2bea37b93496b0cfce18a77f0a - 0.0% (451 Bytes)
[#005] sha256:cd4eaedff0900ba43407bd1193de8e205603d7eb9eaf5ff7f8fa8e2cd7fe21b9 - 0.0% (99 Bytes)
[#006] sha256:658cb9b1f0cf7d7e207a2380a9e8f7ec951fe003635d083556b3f98228ed817c - 16.84% (18.2 MB)
[#007] sha256:8bc728de8fd50a76041b1cbd374882af966404605484ff3993ea79ba3d814256 - 26.44% (28.6 MB)
/bin/sh -c #(nop) ADD file:83d9e760a84be2bd8754e31e33b3f782b44f6e7b7e02c156f519715c88c40615 in /
2021-12-02 08:08:35 UTC/bin/sh -c #(nop) CMD ["bash"]
2021-12-02 08:54:24 UTC/bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node
2021-12-02 09:01:18 UTC/bin/sh -c #(nop) ENV NODE_VERSION=14.18.2
2021-12-02 09:01:49 UTC/bin/sh -c ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) 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/* && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 74F12602B6F1C4E913FAA37AD3A89613643B6201 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C DD8F2338BAE7501E3DD5AC78C273792F7D83545D A48C2BEE680E841632CD4E44F07496B3EB3C1762 108F52B48DB57BB0CC439B2997B01419BD92F80A B9E2F5981AA6E0CD28160D9FF13993A75599653C ; 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 && 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 && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { print $(NF-1) }' | 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
2021-12-02 09:01:49 UTC/bin/sh -c #(nop) ENV YARN_VERSION=1.22.15
2021-12-02 09:02:07 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/* && 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 && 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 '/=>/ { print $(NF-1) }' | 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
2021-12-02 09:02:09 UTC/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/
2021-12-02 09:02:09 UTC/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]
2021-12-02 09:02:10 UTC/bin/sh -c #(nop) CMD ["node"]
2021-12-05 07:39:36 UTC (buildkit.dockerfile.v0)WORKDIR /app
2021-12-05 08:08:35 UTC (buildkit.dockerfile.v0)RUN /bin/sh -c apt update && apt --yes --no-install-recommends install python3 python3-pip python3-cryptography python3-six python3-yaml python3-click python3-markdown python3-requests python3-requests-oauthlib sqlite3 iputils-ping util-linux dumb-init && pip3 --no-cache-dir install apprise==0.9.6 && rm -rf /var/lib/apt/lists/* # buildkit
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)WORKDIR /app
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)COPY /app /app # buildkit
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)EXPOSE map[3001/tcp:{}]
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)VOLUME [/app/data]
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)HEALTHCHECK &{["CMD-SHELL" "node extra/healthcheck.js"] "1m0s" "30s" "3m0s" '\x05'}
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)ENTRYPOINT ["/usr/bin/dumb-init" "--" "extra/entrypoint.sh"]
2021-12-07 11:36:52 UTC (buildkit.dockerfile.v0)CMD ["node" "server/server.js"]
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.