2026-01-31 09:20:55 UTC
52.9 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:975c62035c52c03c139ee69c001e1807f233d49d9db677ee7bda7067775ddb81 - 6.65% (3.52 MB)
[#001] sha256:12c3be01668b9a2ee55b5be701ef51f2f19b115ebad1144ed9b8ebdaa02c350e - 0.0% (115 Bytes)
[#002] sha256:c979e108bd289fbe9d1a6730fcee91c14f474eff32722e1e13c6688c10f7ba4a - 2.83% (1.5 MB)
[#003] sha256:69e488033d0301ebc033fee52f0d795a53c494f9675d3af481d29615e726d36d - 0.0% (250 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:4c2fcca8b0e934cfa79ca8d027c273b99d7138600d96f23d9e5a1f0d5f6d788d - 0.0% (994 Bytes)
[#006] sha256:a6b8a50b119416e7a59d13f42a4484e2b0a61de99b6debd9bc9f528846f6ee50 - 90.51% (47.9 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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:13 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/386
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:17 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:18 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/386
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/386/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:20:55 UTC
54.3 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:782e45fa39e33e126e833b143dfe1e0974da9fce6093625a4645d4c16cb9fc0c - 6.79% (3.68 MB)
[#001] sha256:e8fc5a9026d68c64553e210dabaae3ba37434da572c2eab94d9769ea4396b73c - 0.0% (116 Bytes)
[#002] sha256:a4f3c82c01e2414051fe5f7b79c90a9824323ebc4cc9d0ba07cf5b9c16e0a394 - 2.7% (1.47 MB)
[#003] sha256:69e488033d0301ebc033fee52f0d795a53c494f9675d3af481d29615e726d36d - 0.0% (250 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:f5d0b77d44da120f410b14c9119de141dcc92f4671a55edce5d0c49e86170c7d - 0.0% (997 Bytes)
[#006] sha256:79cd2e35623c812d46e42447f69f7a21409bbce290eb0a9776f65c2dd76735c5 - 90.51% (49.1 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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:14 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/amd64
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
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:18 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:18 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/amd64
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/amd64/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:20:58 UTC
52.8 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:2d51d8438f0b9bb43ed8a6e1a9a0e295651e4608575e7acef1b9076c5a2069df - 6.44% (3.4 MB)
[#001] sha256:12c3be01668b9a2ee55b5be701ef51f2f19b115ebad1144ed9b8ebdaa02c350e - 0.0% (115 Bytes)
[#002] sha256:d7a74990f7b330dee29e6ba7f73ec9e2e3f1146060b6e49fe43149a2ee055d51 - 2.76% (1.46 MB)
[#003] sha256:04fcac086c8a8cf4fe947010d443f304b517a02125d1df072f9d9bd2fe590222 - 0.0% (250 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:a62ea9e2af7fc181044c149b8337884618d8d76a16a0bdc05422cf115bdb0d8b - 0.0% (994 Bytes)
[#006] sha256:9f181d6306c0f2295f8224dc3e3f34758010a7529e148bcd11105652c7216219 - 90.8% (48 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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:13 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v6
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:30 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:30 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v6
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v6/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:20:58 UTC
52.4 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:0e582a9632f2b97cd452b53153880f1689c3400780444b42640f7d1dd9cffe3f - 5.97% (3.13 MB)
[#001] sha256:12c3be01668b9a2ee55b5be701ef51f2f19b115ebad1144ed9b8ebdaa02c350e - 0.0% (115 Bytes)
[#002] sha256:bdc5bbfbe6c7a5a7c819e87dda279d7a18c5cbf7f4e18b1ef03f59fb561a196b - 2.6% (1.36 MB)
[#003] sha256:80e730f93d7f2f7a8c8b41197cc796cf8c46d163f40514a1e904ee3d4ae242ec - 0.0% (253 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:4e0c4b8d8e1ddff23f11e0abad4cff01d1e6f234dacf06e7f36c1c8d9f404b08 - 0.0% (997 Bytes)
[#006] sha256:dddfe03fffa83b951cd08a5337dfd71d58a9f87fa6066234df54ea9b14470e24 - 91.43% (48 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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:13 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v7
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:30 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:31 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v7
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v7/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:20:58 UTC
52.4 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:20158f18ba671f0bb300620f1a8427c9359a60a2a718fda83d2d973470c0a428 - 7.64% (4 MB)
[#001] sha256:12c3be01668b9a2ee55b5be701ef51f2f19b115ebad1144ed9b8ebdaa02c350e - 0.0% (115 Bytes)
[#002] sha256:1e6059fd0f4647e74d1797796d8921bde1f7c2ca9c1e448a88e06377a065452b - 2.99% (1.57 MB)
[#003] sha256:60316e97c475a0993aac254e19704ea6937649bb0de8314f5f63b3a08b3bf5fc - 0.0% (249 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:1b49ad2cf57397f59ede727675b85f1fc9ecc79c118682eaead15cabede3d21e - 0.0% (996 Bytes)
[#006] sha256:5cafa8cfac6f0aeb849a7a2f8fdba805af952511ab07ad2d8870b85f3fecd322 - 89.36% (46.8 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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:13 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm64
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:31 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:31 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm64
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm64/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:20:58 UTC
55.6 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:e9b21f9aba9bcb1f55e3d74daf8b6cc288e64fd55404097eac23c76809b7d244 - 6.82% (3.79 MB)
[#001] sha256:fa7204b5f640b6a083fdb34c055ee4ef1ca427e9584c7fa992da7a0aef374dfe - 0.0% (117 Bytes)
[#002] sha256:b9380bc916ebcedc4f617d7ea50b23644e130561a66dcddf4f93dbc78f84be35 - 7.42% (4.13 MB)
[#003] sha256:a8805dc677b389945bd7e4d4f7ff73d88479c4fdc4f377d4b1384d96fcc76628 - 0.0% (249 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:526a28d55090ce8527e745dcb2054e5a07b273e53dbd6cd82317f4acfe1e9b3b - 0.0% (1015 Bytes)
[#006] sha256:666cbbda6b2caa7b750161629debd9b91c03fd97a1b7c6afb7e522df5762884b - 85.75% (47.7 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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:17 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/loong64
2026-01-30 20:36:17 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-30 20:36:17 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-30 20:36:17 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:17 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:27 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:27 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/loong64
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/loong64/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:20:58 UTC
52.3 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:3f635b7373f04c15ef2a2822d4aab13aa85f50e5da78f48693dc7cfb9c57abbe - 6.99% (3.65 MB)
[#001] sha256:e8fc5a9026d68c64553e210dabaae3ba37434da572c2eab94d9769ea4396b73c - 0.0% (116 Bytes)
[#002] sha256:c394238b35de661dd9e4ed3f92c8133e9c16eb5f64dd0e97c48b2bb91070cefe - 3.09% (1.61 MB)
[#003] sha256:04fcac086c8a8cf4fe947010d443f304b517a02125d1df072f9d9bd2fe590222 - 0.0% (250 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:37f66bc9720cac6c4c7a0a9912de4e1f6af036cc75088a1934c9224e91129016 - 0.0% (997 Bytes)
[#006] sha256:406a300b2f5bd4e9454f56e0dd004969e12c4a0c188f33912696c96a6a2a6b58 - 89.92% (47 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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=false
2026-01-30 20:36:14 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
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:30 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:30 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/ppc64le
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/ppc64le/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2026-01-31 09:20:58 UTC
52.8 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2false
UMASK022
[#000] sha256:022c766c9404d89d4041ad5c42533be4c5a330984f2fe0dfcfec79fdc3fab497 - 6.48% (3.42 MB)
[#001] sha256:12c3be01668b9a2ee55b5be701ef51f2f19b115ebad1144ed9b8ebdaa02c350e - 0.0% (115 Bytes)
[#002] sha256:b099cff06d755fd24c986482b155bf14b2e7fa74eb188d3906c6dd3bd042bf3f - 2.85% (1.51 MB)
[#003] sha256:1666c08126e42b2ee7889487ab60c04827bd5967bb4e955599d35a24d56a5800 - 0.0% (250 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:45617b1dac668d71db0a99c1476ab2728bf968fcd9ff058c598631a854ce0b92 - 0.0% (998 Bytes)
[#006] sha256:35047a647b4e2bef09ed5c880b6e917af71573298f47ca388e6d78ee426af496 - 90.67% (47.9 MB)
[#007] sha256:4ef603d1c0338c62c43b99e087d4ebc3922ff6184eda7a28f7a0b2309f9c9e99 - 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:13 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/riscv64
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-30 20:36:13 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-30 20:36:29 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:29 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=false /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:20:44 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/riscv64
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=false
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG UID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)ARG GID=1001
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2026-01-31 09:20:44 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=false 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:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/riscv64/openlist ./ # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2026-01-31 09:20:55 UTC (buildkit.dockerfile.v0)USER openlist
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=false
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2026-01-31 09:20:58 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2026-01-31 09:20:58 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.