2025-10-19 18:14:31 UTC
63 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:6fd6482cc0d6bfb8d86ae4adbb0f5de6a3625a1892a2c95894238b07e75551dc - 5.25% (3.3 MB)
[#001] sha256:bce4bd9b9d8933c0c5fa9de6fa4412ff375cc4c963bc2506d90ce086c75f3977 - 0.0% (116 Bytes)
[#002] sha256:74c241ecc1f4bd7cde360e450000edca72df950221f4e3e0025798c09783b1c2 - 19.05% (12 MB)
[#003] sha256:050da9849aafa189da4d6d184acfd6fdde9dd86cb0658e82c824135891f5c470 - 0.0% (254 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:c522cabb65e60a326ab77262d284a63e50d856b7e8dc590c058655c8587b3fe6 - 0.0% (1017 Bytes)
[#006] sha256:fcc7f5cef02101255d0f4bc13279f76b8ab6de74a9a16055c68a0db1b5f7e25e - 75.7% (47.7 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-x86.tar.gz / # buildkit
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/386
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:16 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false 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
2025-10-18 20:23:16 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false 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
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/386
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false 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
2025-10-19 18:14:30 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/386/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2025-10-19 18:14:31 UTC
64.3 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:d62bb7eb03b5936dc5a5665fd5a6ede7eab4a6bd0ed965be8c6c3c21e1e53931 - 5.4% (3.47 MB)
[#001] sha256:40570f0c778f631e4018cf9b723c0ac5107b79f10d559b8d27d4a6cbab68178a - 0.0% (116 Bytes)
[#002] sha256:18e5cb940b0128a9bc456aa6f7918ee2a057e56dd6c08d1b7900179db5c3c6fa - 18.55% (11.9 MB)
[#003] sha256:f9f2faf095aadce80046dd26a29f798cbdc199a0e309175930e8a0eea89defe3 - 0.0% (254 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:30fce48259370c15a9285c08e02815db9cff37ece04a9945371551976be2fb1f - 0.0% (1018 Bytes)
[#006] sha256:b9b5ced8e24c8aebed99b1a2d9c83cb1ea9ba97f9966ef5daf71817bcdeba18b - 76.05% (48.9 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-x86_64.tar.gz / # buildkit
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/amd64
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:15 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false 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
2025-10-18 20:23:15 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/amd64
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/amd64/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2025-10-19 18:14:34 UTC
62.4 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:4dc763b4cf5e7cd6b888add3a349266bdfa97f861fa2dd7218676afe3ed4d7fe - 5.15% (3.21 MB)
[#001] sha256:bce4bd9b9d8933c0c5fa9de6fa4412ff375cc4c963bc2506d90ce086c75f3977 - 0.0% (116 Bytes)
[#002] sha256:8c62e3d2b3479b40498b2c50050241b7a9da2c5ab62cafa3530ebfab30cc8c1d - 18.25% (11.4 MB)
[#003] sha256:b3e111d59861bdc2cf43e6a7bd7bce932d38508a3d6ba9b301ab1f1536f3d468 - 0.0% (255 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:8a3d59fb6b01b79212e7aaf76834331c585e1e85e6ce2c662b361ba57a99cafe - 0.0% (1018 Bytes)
[#006] sha256:daa89f3bc1de7fa2dab0a597815fec65f1707f4b67e358d4274c27a98792efe1 - 76.6% (47.8 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-armhf.tar.gz / # buildkit
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v6
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:35 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false 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
2025-10-18 20:23:36 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false 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
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v6
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false 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
2025-10-19 18:14:30 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v6/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2025-10-19 18:14:33 UTC
61.2 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:56c91669ab0b059c942de9f47565cc578ebeeec80ce7488c8f72fd1c9652d1bf - 4.83% (2.95 MB)
[#001] sha256:bce4bd9b9d8933c0c5fa9de6fa4412ff375cc4c963bc2506d90ce086c75f3977 - 0.0% (116 Bytes)
[#002] sha256:939211e9cddd2fb2ce7cf9402f4b128a0c65381880b4b50be6194a448a4e155b - 17.19% (10.5 MB)
[#003] sha256:07270e3c6ccc893536f86da980b9115366446bc8016bbcaf1003d8e3532091cb - 0.0% (253 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:6b120cec011b9bbee457e093cc6de24bd36a97ebdc452ac5e839039e0c39d595 - 0.0% (1018 Bytes)
[#006] sha256:718f956a29a90d41328431d919f1b66ea584c32751b94c8b4df598f27a1c572f - 77.99% (47.7 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-armv7.tar.gz / # buildkit
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v7
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:37 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false 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
2025-10-18 20:23:37 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false 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
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm/v7
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false 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
2025-10-19 18:14:30 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v7/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2025-10-19 18:14:34 UTC
62.6 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:b2e6f696af52b3d1da13b51b22502737ade0e1534387440426158079090a1c74 - 6.08% (3.81 MB)
[#001] sha256:bce4bd9b9d8933c0c5fa9de6fa4412ff375cc4c963bc2506d90ce086c75f3977 - 0.0% (116 Bytes)
[#002] sha256:e6693ef9ee39b98ff0b17b86eb9617fec9b90ef569d21084c1d3b9318ad9bfc0 - 19.45% (12.2 MB)
[#003] sha256:c88b47f5e6bd15b2c24711b288ae2005be9318a085d5d4a6f3fb661015970c0a - 0.0% (253 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:9085cf170007817ecc09dcaa23747d193ba08a811274a55f9eb1a70078066461 - 0.0% (1016 Bytes)
[#006] sha256:4874e1f300516f30ef07df4b23f669fa1eb0411e002df5b3364cd04f1368ecf3 - 74.46% (46.6 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-aarch64.tar.gz / # buildkit
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm64
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:08 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:38 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false 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
2025-10-18 20:23:38 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/arm64
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:19 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:30 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/arm64/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2025-10-19 18:14:33 UTC
62.6 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:3a03302a4ce2ccbfcc0386fe0a8ab7f4fb110876deead3001f8d85a763562ff6 - 5.22% (3.27 MB)
[#001] sha256:40570f0c778f631e4018cf9b723c0ac5107b79f10d559b8d27d4a6cbab68178a - 0.0% (116 Bytes)
[#002] sha256:d0d13cc7638e541956279ba848c66857017e5f517263b00ed58ca4c813f23ca2 - 19.02% (11.9 MB)
[#003] sha256:134c32225df05f797d937443ee67ba8af150f22ee36c71956887405bf5ec574d - 0.0% (255 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:6c996e38800ddda1c967f34344bd955b2e6c8b667aa9d86a7ee469ba58c2aa23 - 0.0% (1019 Bytes)
[#006] sha256:b23a90dc9381e32aa055e7b1b60457f02993fcffb9f06a51c447c3683388089c - 75.75% (47.5 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-loongarch64.tar.gz / # buildkit
2025-10-01 01:43:46 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/loong64
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:28 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false 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
2025-10-18 20:23:28 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/loong64
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:30 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/loong64/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:33 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2025-10-19 18:14:34 UTC
62.5 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:d8b56143a99f4917d30da7e1171daf3971c7cf24b2ef66aad7b01f201494ec66 - 5.46% (3.41 MB)
[#001] sha256:40570f0c778f631e4018cf9b723c0ac5107b79f10d559b8d27d4a6cbab68178a - 0.0% (116 Bytes)
[#002] sha256:cdcfc7de13bfa069131c052e55b81b06b0a9b219e26d5a5695190f9d2f1b4c62 - 19.62% (12.3 MB)
[#003] sha256:7b1220604f1d48f348750223fa5966c318d0805b87686114e4b15eb49fb1fba7 - 0.0% (254 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:ff842289b879af7d955eb506e5b284ff6abec3b4e04546f7349df32ebc011bff - 0.0% (1018 Bytes)
[#006] sha256:965bf8f7657451dc0b48dea1c52f53e80b36f75f720a1d8660d1ce145fc305b4 - 74.92% (46.8 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-ppc64le.tar.gz / # buildkit
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/ppc64le
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:37 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false 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
2025-10-18 20:23:38 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false 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
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/ppc64le
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:21 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false 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
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/ppc64le/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)CMD ["/entrypoint.sh"]
2025-10-19 18:14:34 UTC
62.7 MB
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN_ARIA2true
UMASK022
[#000] sha256:1ce3d2c30285d18ddfb483c62335e2dd9abc74922e2278f333df42c8c25752a9 - 5.1% (3.19 MB)
[#001] sha256:40570f0c778f631e4018cf9b723c0ac5107b79f10d559b8d27d4a6cbab68178a - 0.0% (116 Bytes)
[#002] sha256:c7d3db23674ac27c663f68995241226087d21d0fa6c690884836df48bfa6b446 - 18.91% (11.9 MB)
[#003] sha256:07270e3c6ccc893536f86da980b9115366446bc8016bbcaf1003d8e3532091cb - 0.0% (253 Bytes)
[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
[#005] sha256:bb804e75ee1fbfec08cb37cf8167803d8888da4ce948d596ec6dceb9307a4196 - 0.0% (1018 Bytes)
[#006] sha256:9d563b0a242df9a2c20ff5b8e3fdbe8b16ca72e5de11e61d31ec6186c3f8266d - 75.99% (47.6 MB)
[#007] sha256:017c0a185dd88cdc306e943ed038423bf52854ba6554f003ca1e5d8a93c15392 - 0.0% (842 Bytes)
[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)
ADD alpine-minirootfs-20250108-riscv64.tar.gz / # buildkit
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)CMD ["/bin/sh"]
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/riscv64
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-18 20:23:07 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-18 20:23:37 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false 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
2025-10-18 20:23:37 UTC (buildkit.dockerfile.v0)RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)LABEL MAINTAINER=OpenList
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG TARGETPLATFORM=linux/riscv64
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG INSTALL_FFMPEG=false
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG INSTALL_ARIA2=true
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG USER=openlist
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG UID=1001
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)ARG GID=1001
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)WORKDIR /opt/openlist/
2025-10-19 18:14:20 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false 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
2025-10-19 18:14:30 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 /build/linux/riscv64/openlist ./ # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit
2025-10-19 18:14:31 UTC (buildkit.dockerfile.v0)USER openlist
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=false INSTALL_ARIA2=true USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)ENV UMASK=022 RUN_ARIA2=true
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)VOLUME [/opt/openlist/data/]
2025-10-19 18:14:34 UTC (buildkit.dockerfile.v0)EXPOSE [5244/tcp 5245/tcp]
2025-10-19 18:14:34 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.