Namespace
openlistteam
Image / Tag
openlist:v4.1.4-lite-ffmpeg
Content Digest
sha256:69a5d7c46849940f8c84a3523d9d6953fcf3aeb8873de462ed0b90ac196fbf7b
Details
Created

2025-10-01 12:33:07 UTC

Size

76.3 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:6fd6482cc0d6bfb8d86ae4adbb0f5de6a3625a1892a2c95894238b07e75551dc - 4.33% (3.3 MB)

[#001] sha256:741efbe24c912f1a5a28f456d891927222ead7bb825c75c5b8d36dd7470dd917 - 0.0% (115 Bytes)

[#002] sha256:424025e32a97874b035f0af8376f883dfc3dcd600e2046f4a880ee53f077f408 - 61.55% (47 MB)

[#003] sha256:3078351723f2556d17f93708fdfcb714b1739c9ce94ba051238c75cd8df472a3 - 0.0% (250 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:92b0d1b2b533c08a4f6350df68169f9840419e6ec99a8fec1d6cfd6ef520ac24 - 0.0% (1016 Bytes)

[#006] sha256:5bee64584a638f444f5c6786dfb0a326449c36f6f59622c9252450840d85e8db - 34.12% (26 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-x86.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:24:50 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true 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

2025-09-30 20:24:51 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/386

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true 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

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/386/openlist ./ # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/386 INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc00023b1c0}

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-10-01 12:33:07 UTC

Size

84.5 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:d62bb7eb03b5936dc5a5665fd5a6ede7eab4a6bd0ed965be8c6c3c21e1e53931 - 4.11% (3.47 MB)

[#001] sha256:cb62f08bea92803d14b740c086f7c5ba64f0956fa0022fb525f91ab2f4341bb6 - 0.0% (117 Bytes)

[#002] sha256:7f0726027e44a40eb21dafc79a4c75af343a1614c3efc068aea6c16f008d40e3 - 63.71% (53.9 MB)

[#003] sha256:0bfb846201cd3e3293523df38e1378a2316f38c87cf42f93d868df8e38be924f - 0.0% (250 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:fd6bcb187fa338b70205c43f0c1ccfb0560a66ef71a9fe4c09206e7e615ec494 - 0.0% (1015 Bytes)

[#006] sha256:784488de367a16c7eb6cafcf3b6e29a0d3e9ef264722e3ba9e40a7b2739b4af6 - 32.18% (27.2 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-x86_64.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:24:49 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true 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

2025-09-30 20:24:49 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/amd64

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/amd64/openlist ./ # buildkit

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/amd64 INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc00023b3c0}

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-10-01 12:33:09 UTC

Size

70.8 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:4dc763b4cf5e7cd6b888add3a349266bdfa97f861fa2dd7218676afe3ed4d7fe - 4.53% (3.21 MB)

[#001] sha256:741efbe24c912f1a5a28f456d891927222ead7bb825c75c5b8d36dd7470dd917 - 0.0% (115 Bytes)

[#002] sha256:cfd1298d70e0c9a846c5d58d9ee1264968bd4cfc41ce49bc0c66cfbf47ba5301 - 58.54% (41.4 MB)

[#003] sha256:1704c59aad67654d53205e53e9b3f5604de3ec5d0c23663abe425857d5490c5c - 0.0% (250 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:0e268c060c1fa3396f556d204fa5ec8d62fd30fb7909f02bc861964a51a651ba - 0.0% (1019 Bytes)

[#006] sha256:45c69d70077f699e5705ccebb162753d98a40eec5068e6d40b78ebda1ea751d2 - 36.92% (26.1 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-armhf.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:25:10 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true 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

2025-09-30 20:25:10 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v6

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true 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

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v6/openlist ./ # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v6 INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc000597440}

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-10-01 12:33:09 UTC

Size

68.8 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:56c91669ab0b059c942de9f47565cc578ebeeec80ce7488c8f72fd1c9652d1bf - 4.29% (2.95 MB)

[#001] sha256:cb62f08bea92803d14b740c086f7c5ba64f0956fa0022fb525f91ab2f4341bb6 - 0.0% (117 Bytes)

[#002] sha256:6ed28b3ae44d3a23c725a2aeb279bf79a3dd0e50310ac82834bcf251872aa944 - 57.74% (39.7 MB)

[#003] sha256:409c8ceb8bdff31433d7687961c507924b59673c6c5c09f4fec9d2ea29cc185e - 0.0% (250 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:71ffdee2e9877c0547ad292d1e5d8886a61fc30445671a703ea93a77d8afcd90 - 0.0% (1017 Bytes)

[#006] sha256:f9b50aa6765a86cb83a90e7eef2621b5395834492c2509646fc15556e3052f0a - 37.96% (26.1 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-armv7.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:25:09 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true 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

2025-09-30 20:25:09 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm/v7

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true 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

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/arm/v7/openlist ./ # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm/v7 INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc000597c80}

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-10-01 12:33:09 UTC

Size

79.7 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:b2e6f696af52b3d1da13b51b22502737ade0e1534387440426158079090a1c74 - 4.78% (3.81 MB)

[#001] sha256:741efbe24c912f1a5a28f456d891927222ead7bb825c75c5b8d36dd7470dd917 - 0.0% (115 Bytes)

[#002] sha256:6b03d19aaee09a297122de000f48587c1bdae869148f92f979351b6dd570dda5 - 63.84% (50.9 MB)

[#003] sha256:409c8ceb8bdff31433d7687961c507924b59673c6c5c09f4fec9d2ea29cc185e - 0.0% (250 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:32b3464ce8790e4676271362358de03c2ffbaa22d90e445fcb4944efc8cb350d - 0.0% (1019 Bytes)

[#006] sha256:d9d4d5f92222c8598f15c5e74cbead5014f50ee811c3292c57194bfc174e3a1a - 31.38% (25 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-aarch64.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:25:09 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true 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

2025-09-30 20:25:10 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/arm64

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/arm64/openlist ./ # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/arm64 INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc00076c840}

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-10-01 12:33:09 UTC

Size

76.6 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:3a03302a4ce2ccbfcc0386fe0a8ab7f4fb110876deead3001f8d85a763562ff6 - 4.27% (3.27 MB)

[#001] sha256:b3b5430ff2b68b192649f5ed417b44e9cf1e7d24bd7e2a0ebbfe96fb6487522e - 0.0% (117 Bytes)

[#002] sha256:7ac2bc05aa7a613b6bd606899f50e4f09b2383f1a127477df85a6c2c260d69e2 - 62.01% (47.5 MB)

[#003] sha256:6a208dae5d0778c06f38adcf9d211ef6f89763d54af2a48336ca2f30d6ac0371 - 0.0% (249 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:28ad6a0352289347f1835d7a685f3ea538bcad9248268bcf0845f56a5e1d8423 - 0.0% (1019 Bytes)

[#006] sha256:96a76d60bf739f82a27dfa187f6fd26779ed76f2c398a497428aa05e657b7012 - 33.72% (25.8 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-09-01 01:50:11 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-loongarch64.tar.gz / # buildkit

2025-09-01 01:50:11 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:37 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-09-30 20:24:37 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:37 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:37 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:37 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:25:15 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true 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

2025-09-30 20:25:15 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/loong64

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/loong64/openlist ./ # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/loong64 INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc00066cdc0}

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-10-01 12:33:09 UTC

Size

84.3 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:d8b56143a99f4917d30da7e1171daf3971c7cf24b2ef66aad7b01f201494ec66 - 4.04% (3.41 MB)

[#001] sha256:cb62f08bea92803d14b740c086f7c5ba64f0956fa0022fb525f91ab2f4341bb6 - 0.0% (117 Bytes)

[#002] sha256:dc684367f73d9f7d22881b7878d2bffe11de4c05fdbfd6f1e2414aa983b1cb9b - 66.04% (55.7 MB)

[#003] sha256:ec09a9a0f5e1a6f5b9f9ed19502416e5cc399441de85e5405d82b5bbc069447c - 0.0% (250 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:46a963dcde90c3fdf968f1058723a39be5c54a7d7452089ea9207f8c4c7c110b - 0.0% (1019 Bytes)

[#006] sha256:5dcc43e42c067af44f481cd43547862cc3a123d8625b06bd13815cf290e1bb02 - 29.91% (25.2 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-ppc64le.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:38 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:25:14 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true 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

2025-09-30 20:25:14 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/ppc64le

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true 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

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/ppc64le/openlist ./ # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/ppc64le INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc0004b35c0}

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]

Details
Created

2025-10-01 12:33:09 UTC

Size

74 MB

Content Digest
Labels
  • MAINTAINER
    OpenList
  • org.opencontainers.image.created
    2025-10-01T12:32:56.000Z
  • org.opencontainers.image.description
    A new AList Fork to Anti Trust Crisis
  • org.opencontainers.image.licenses
    AGPL-3.0
  • org.opencontainers.image.revision
    2edc446ced42f8fce02f3cc445ecbe568fa1ca23
  • org.opencontainers.image.source
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.title
    OpenList
  • org.opencontainers.image.url
    https://github.com/OpenListTeam/OpenList
  • org.opencontainers.image.version
    v4.1.4-lite-ffmpeg

Environment
PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUN_ARIA2

false

UMASK

022


Layers

[#000] sha256:1ce3d2c30285d18ddfb483c62335e2dd9abc74922e2278f333df42c8c25752a9 - 4.32% (3.19 MB)

[#001] sha256:741efbe24c912f1a5a28f456d891927222ead7bb825c75c5b8d36dd7470dd917 - 0.0% (115 Bytes)

[#002] sha256:b23adcf291c0dc16a814aca86fa0441a0a57d342520870a42ed72189ddc18fb3 - 60.54% (44.8 MB)

[#003] sha256:65a0a952955bd4c47adc4e7e997a4dded1c57aa62ae14aa6df817d8ea54b67df - 0.0% (250 Bytes)

[#004] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#005] sha256:aeb0517e456cceecf29fedb3dd50f42b6eb28f82207d7c40534d74cd5bfb42f7 - 0.0% (1019 Bytes)

[#006] sha256:f92665f33d4c2098ab8332f21cd470f876546e5d0fd981ff0457c5c3f7d4bc85 - 35.14% (26 MB)

[#007] sha256:6cf5f8fc5a4528db01666a874c598d84069c3beaff37da7f479a1ba0a4e4f054 - 0.0% (841 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)


History
2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

ADD alpine-minirootfs-20250108-riscv64.tar.gz / # buildkit

2025-01-08 12:16:36 UTC (buildkit.dockerfile.v0)

CMD ["/bin/sh"]

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-09-30 20:24:39 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-09-30 20:25:11 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true 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

2025-09-30 20:25:11 UTC (buildkit.dockerfile.v0)

RUN |3 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

LABEL MAINTAINER=OpenList

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM=linux/riscv64

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_FFMPEG=true

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG INSTALL_ARIA2=false

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG USER=openlist

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG UID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

ARG GID=1001

2025-10-01 12:33:05 UTC (buildkit.dockerfile.v0)

WORKDIR /opt/openlist/

2025-10-01 12:33:06 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true 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

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 /build/linux/riscv64/openlist ./ # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

COPY --chown=1001:1001 --chmod=755 entrypoint.sh /entrypoint.sh # buildkit

2025-10-01 12:33:07 UTC (buildkit.dockerfile.v0)

USER openlist

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

RUN |6 TARGETPLATFORM=linux/riscv64 INSTALL_FFMPEG=true INSTALL_ARIA2=false USER=openlist UID=1001 GID=1001 /bin/sh -c /entrypoint.sh version # buildkit

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

ENV UMASK=022 RUN_ARIA2=false

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

VOLUME [/opt/openlist/data/]

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

EXPOSE &{[{{25 0} {25 0}}] 0xc00066cf40}

2025-10-01 12:33:09 UTC (buildkit.dockerfile.v0)

CMD ["/entrypoint.sh"]