2026-01-31 09:19:40 UTC
101 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:975c62035c52c03c139ee69c001e1807f233d49d9db677ee7bda7067775ddb81 - 3.49% (3.52 MB)
[#001] sha256:e8fc5a9026d68c64553e210dabaae3ba37434da572c2eab94d9769ea4396b73c - 0.0% (116 Bytes)
[#002] sha256:ee7233cd06b66bbb32f88dd786957e87eef074cc76712fb01f8945f348164eae - 49.02% (49.4 MB)
[#003] sha256:3f03f5b62250f76b766067930d68fd6f75842ccca11dc64e4293e036d187b66a - 0.0% (250 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:438e8795f73dfef2914d0a57ee11e439d83901903784a929fc79bfd1692f3cf2 - 0.0% (994 Bytes)
[#006] sha256:b523caf13ea80698b787be87a65af26250f65453be378dc91adac7655355c3a3 - 47.49% (47.9 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20260127-x86.tar.gz / # buildkit
2026-01-28 01:17:57 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/386
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/386
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/386/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:19:40 UTC
109 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:782e45fa39e33e126e833b143dfe1e0974da9fce6093625a4645d4c16cb9fc0c - 3.38% (3.68 MB)
[#001] sha256:ff7bf28242c1329088ac1d38103f3604388dff444b1a0dc30baabbb1ee136d5c - 0.0% (117 Bytes)
[#002] sha256:a156b225c97586600f1387d5b1fa6049dd29b728d96f5fae94e4589c4d1580d7 - 51.51% (56.1 MB)
[#003] sha256:b1cbd2ce89162eecdcfe96bf44ef4b01241ddf05cef74dede3e1362bf77a2300 - 0.0% (255 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:82d8efb9ae35e6d6104ba5ade79dbbbcb0587c1a5d479adfffd8fc92ac9c3354 - 0.0% (997 Bytes)
[#006] sha256:bce474052ab2a9a85b2eb5ddfe06c8758372856b1bcef5f9f8870c9a535214c6 - 45.11% (49.1 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20260127-x86_64.tar.gz / # buildkit
2026-01-28 01:17:51 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/amd64
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:25 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/amd64
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/amd64/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:19:42 UTC
95.3 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:2d51d8438f0b9bb43ed8a6e1a9a0e295651e4608575e7acef1b9076c5a2069df - 3.57% (3.4 MB)
[#001] sha256:e8fc5a9026d68c64553e210dabaae3ba37434da572c2eab94d9769ea4396b73c - 0.0% (116 Bytes)
[#002] sha256:e927b221ce6fc6a872f3098a681dafcbadd7481a72cbe820510301754f27e706 - 46.09% (43.9 MB)
[#003] sha256:7a3520ba42aa1cb5730cb742b6b1d290391028ac8fa801dfe70be12aff505ddf - 0.0% (253 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:cea1ba3de79ce804dcdf46f76e73d85ac997cb91ea473a7bb0ea26843f362aed - 0.0% (995 Bytes)
[#006] sha256:066e3127b97d4c5e74472b904a8ed8e663c1fba27bb4f68bdee4518d00c4ad68 - 50.34% (48 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20260127-armhf.tar.gz / # buildkit
2026-01-28 01:17:40 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v6
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:53 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:54 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v6
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v6/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:19:42 UTC
93.1 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:0e582a9632f2b97cd452b53153880f1689c3400780444b42640f7d1dd9cffe3f - 3.36% (3.13 MB)
[#001] sha256:ff7bf28242c1329088ac1d38103f3604388dff444b1a0dc30baabbb1ee136d5c - 0.0% (117 Bytes)
[#002] sha256:0faf926141bfd7412108583dc3c72ced9da9f25bed6298614eef5302649eda72 - 45.1% (42 MB)
[#003] sha256:84af14888601229e05afff9aefdd23e652f2ac557676fd9d411f5e621132dc58 - 0.0% (253 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:61d1ddb37bf120bf94dd74216da9da7d883b282c1773b46b765974b26510abe1 - 0.0% (997 Bytes)
[#006] sha256:83fc0727090a4711b59216edfd41b030222511b1a91b0cd228177dbc76717c9f - 51.53% (48 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20260127-armv7.tar.gz / # buildkit
2026-01-28 01:17:40 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v7
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v7
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v7/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:19:42 UTC
103 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:20158f18ba671f0bb300620f1a8427c9359a60a2a718fda83d2d973470c0a428 - 3.87% (4 MB)
[#001] sha256:ff7bf28242c1329088ac1d38103f3604388dff444b1a0dc30baabbb1ee136d5c - 0.0% (117 Bytes)
[#002] sha256:05409d9166d944495f49ff456f013be1570a3d6190f6715a240c5e89d6dfac99 - 50.91% (52.7 MB)
[#003] sha256:4fcc4f86eedffe08d9ed983509354146d7436297811f0b7f0dfacac613a400c4 - 0.0% (252 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:a33b6a0689a18a76fac43c66bc2910c0d135dd7e125f3cb5132aaade6dc44217 - 0.0% (996 Bytes)
[#006] sha256:8f80a68e81e98accc2f4ade8b31f4823e83811f4435d3623092cb947c130937e - 45.22% (46.8 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20260127-aarch64.tar.gz / # buildkit
2026-01-28 01:17:41 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm64
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:53 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:53 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm64
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm64/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:19:42 UTC
104 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:e9b21f9aba9bcb1f55e3d74daf8b6cc288e64fd55404097eac23c76809b7d244 - 3.65% (3.79 MB)
[#001] sha256:bf36e03ac71c0832e64cc25aa6ed78d56bedb0af177583c837a19ad1a6d5903d - 0.0% (116 Bytes)
[#002] sha256:b3d9f0bfdfe99b06068f2801030c0f5b08ed4da1eaec07dc0d3835807b832f86 - 50.43% (52.4 MB)
[#003] sha256:c02aa0e0a8c39f315824a085eb0c70be1d9ddc262e8ce79316a51e30319c8dba - 0.0% (254 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:d10316743a95b9da2072c8aedfba83d09a00b91b38c5070d93514c9ea674980f - 0.0% (1016 Bytes)
[#006] sha256:432ef2bd056f9f2a383abf6974b2e9ca99d61d618a7c7b92805c5d0b8ffbd86a - 45.91% (47.7 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20251224-loongarch64.tar.gz / # buildkit
2026-01-01 02:03:39 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/loong64
2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:11 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:39 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:40 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/loong64
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/loong64/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:19:42 UTC
107 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:3f635b7373f04c15ef2a2822d4aab13aa85f50e5da78f48693dc7cfb9c57abbe - 3.43% (3.65 MB)
[#001] sha256:e8fc5a9026d68c64553e210dabaae3ba37434da572c2eab94d9769ea4396b73c - 0.0% (116 Bytes)
[#002] sha256:2a98810d41c9d32124b157633838088e003d6c796ac9170e3a80a6172d378df4 - 52.48% (55.9 MB)
[#003] sha256:a0b0d934372998f379180de73d27aabcfb4755b303246c238ef1eed93362103e - 0.0% (253 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:6a7b49a670e23c4a99ad2700d3f24d18715798329e3172f5f9771a2f5bf44ef5 - 0.0% (996 Bytes)
[#006] sha256:b5cc989d2768d103678c0a8b2b92f637eeab604b65f2d7e98ec285fbb31c3c8d - 44.1% (47 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20260127-ppc64le.tar.gz / # buildkit
2026-01-28 01:17:01 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/ppc64le
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:55 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:55 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/ppc64le
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/ppc64le/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:19:42 UTC
98.7 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:022c766c9404d89d4041ad5c42533be4c5a330984f2fe0dfcfec79fdc3fab497 - 3.47% (3.42 MB)
[#001] sha256:ff7bf28242c1329088ac1d38103f3604388dff444b1a0dc30baabbb1ee136d5c - 0.0% (117 Bytes)
[#002] sha256:ddf57f7a70d16843e724c11ff1f0deeb7618bd5bae60bfd3661f9e218cddc4f4 - 48.03% (47.4 MB)
[#003] sha256:3ff1d8a1e4e9e2510a998f7052fcab0cde89e741686263ee6acc32a9bc52b616 - 0.0% (254 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:cf82d4f009befe804b3886ac72ac44fc3e3bd4f2bc64cbbd8a1b8fbeefa5b943 - 0.0% (998 Bytes)
[#006] sha256:12b498cdc7bc374ca257913614155b5c3abc533c17b223befa6e8a688ee5cf51 - 48.5% (47.9 MB)
[#007] sha256:bd4c18f35db011469c1870be7cdfb9cab91975b52b7c5e2b5d8d25d89043acfd - 0.0% (843 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20260127-riscv64.tar.gz / # buildkit
2026-01-28 03:45:10 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/riscv64
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:15 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c echo "🔍 Build args: INSTALL_FFMPEG=$INSTALL_FFMPEG, INSTALL_ARIA2=$INSTALL_ARIA2" && apk update && apk upgrade --no-cache && apk add --no-cache bash ca-certificates su-exec tzdata runit && if [ "$INSTALL_FFMPEG" = "true" ]; then echo "📦 Installing FFmpeg..." && apk add --no-cache ffmpeg; else echo "⏭️ Skipping FFmpeg installation"; fi && if [ "$INSTALL_ARIA2" = "true" ]; then echo "📦 Installing Aria2..." && apk add --no-cache curl aria2 && mkdir -p /opt/aria2/.aria2 && curl -fsSL --retry 3 https://codeload.github.com/P3TERX/aria2.conf/tar.gz/refs/heads/master -o /tmp/aria-conf.tar.gz && tar -zxvf /tmp/aria-conf.tar.gz -C /opt/aria2/.aria2 --strip-components=1 && rm -f /tmp/aria-conf.tar.gz && sed -i 's|rpc-secret|#rpc-secret|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root/.aria2|/opt/aria2/.aria2|g' /opt/aria2/.aria2/script.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/aria2.conf && sed -i 's|/root|/opt/aria2|g' /opt/aria2/.aria2/script.conf && mkdir -p /opt/service/stop/aria2/log && echo '#!/bin/sh' > /opt/service/stop/aria2/run && echo 'exec 2>&1' >> /opt/service/stop/aria2/run && echo 'exec aria2c --enable-rpc --rpc-allow-origin-all --conf-path=/opt/aria2/.aria2/aria2.conf' >> /opt/service/stop/aria2/run && echo '#!/bin/sh' > /opt/service/stop/aria2/log/run && echo 'mkdir -p /opt/openlist/data/log/aria2 2>/dev/null' >> /opt/service/stop/aria2/log/run && echo 'exec svlogd /opt/openlist/data/log/aria2' >> /opt/service/stop/aria2/log/run && chmod +x /opt/service/stop/aria2/run /opt/service/stop/aria2/log/run && touch /opt/aria2/.aria2/aria2.session && (cd /opt/aria2/.aria2 && ./tracker.sh && echo "✅ Tracker update completed successfully" || echo "⚠️ Tracker update failed, continuing..."); else echo "⏭️ Skipping Aria2 installation"; fi && rm -rf /var/cache/apk/* # buildkit
2026-01-30 20:36:51 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true /bin/sh -c mkdir -p /opt/service/start && chmod 777 /opt/service/start && mkdir -p /opt/service/stop/openlist && echo '#!/bin/sh' > /opt/service/stop/openlist/run && echo 'exec 2>&1' >> /opt/service/stop/openlist/run && echo 'cd /opt/openlist' >> /opt/service/stop/openlist/run && echo 'exec ./openlist server --no-prefix' >> /opt/service/stop/openlist/run && chmod +x /opt/service/stop/openlist/run # buildkit
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/riscv64
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=true
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:19:33 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:19:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c addgroup -g ${GID} ${USER} && adduser -D -u ${UID} -G ${USER} ${USER} && mkdir -p /opt/openlist/data # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/riscv64/openlist ./ # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:19:40 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:19:42 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
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.