Namespace
jxxghp
Image / Tag
moviepilot:1.4.0
Content Digest
sha256:8ee7f787e27451b89b0cc5e5e8d7d0e1a00166eca7b6f55a545e175f132e9a10
Details
Created

2023-11-06 03:30:29 UTC

Size

302 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-11-06T03:44:50.308Z
  • org.opencontainers.image.description
    NAS媒体库自动化管理工具
  • org.opencontainers.image.licenses
    GPL-3.0
  • org.opencontainers.image.revision
    4072799c1367c154ee7ad7f9792e1c9d14a7ad17
  • org.opencontainers.image.source
    https://github.com/jxxghp/MoviePilot
  • org.opencontainers.image.title
    MoviePilot
  • org.opencontainers.image.url
    https://github.com/jxxghp/MoviePilot
  • org.opencontainers.image.version
    1.4.0

Environment
AUTH_SITE

iyuu

CONFIG_DIR

/config

GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

HOME

/moviepilot

IYUU_SIGN

LANG

C.UTF-8

MOVIEPILOT_AUTO_UPDATE

release

NGINX_PORT

3000

PATH

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

PGID

0

PORT

3001

PROXY_HOST

PUID

0

PYTHON_GET_PIP_SHA256

45a2bb8bf2bb5eff16fdd00faef6f29731831c7c59bd9fc2bf1f3bed511ff1fe

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/9af82b715db434abb94a0a6f3569f43e72157346/public/get-pip.py

PYTHON_PIP_VERSION

23.1.2

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.4

TERM

xterm

TZ

Asia/Shanghai

UMASK

000


Layers

[#000] sha256:14726c8f78342865030f97a8d3492e2d1a68fbd22778f9a31dc6be4b4f12a9bc - 9.91% (30 MB)

[#001] sha256:7d676dc8a994c0e4184cd6cfbc4b1540eea31846375a23864db3bb9effab24c0 - 0.34% (1.03 MB)

[#002] sha256:e9e2f08137fc1836dea30551d759b273a082f57d4f19875eda0bdff81a9add2e - 3.77% (11.4 MB)

[#003] sha256:6cc9fece80c8450f867726ec306e38a40017366772898899fe4e8713dd8b3a10 - 0.0% (244 Bytes)

[#004] sha256:264b6a89a95dda8616fbbd6f574408e1b89851411657dcd5975df45de8aa380d - 1.07% (3.23 MB)

[#005] sha256:2208b904e206c7ce11fc728ab095af7a45a01455116ee425e20cbe214eb6433e - 0.0% (93 Bytes)

[#006] sha256:98006ff6706430a1cac88d535621d7bcf526b5963a261a2025ee1087fcdaa36c - 18.33% (55.4 MB)

[#007] sha256:c8f9b64321929e86b38a4b5fee9eac6f44c116de8140ae8c1add93cdc340f2ff - 0.0% (739 Bytes)

[#008] sha256:b535fab0fec3981c12c423cd77d1e607633bbc3a0b88d4e6a56eae55e6e2de0f - 64.68% (196 MB)

[#009] sha256:dff83ae8ec0effbd0d69a962d1ec7645cc37bb511456864a1d66b453fd86faab - 0.11% (344 KB)

[#010] sha256:b231bf688d1b18e276f4b6800c9989f3b0afbaa39fc3237ad9c2e623718bfeff - 1.8% (5.44 MB)


History
2023-08-16 01:00:09 UTC

/bin/sh -c #(nop) ADD file:2d91c2e03d02bfa16fe4f766d851b351d93d33f84751ad96c985e64ea024ec28 in /

2023-08-16 01:00:09 UTC

/bin/sh -c #(nop) CMD ["bash"]

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/* # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.4

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libexpat1-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python3 --version # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.1.2

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/9af82b715db434abb94a0a6f3569f43e72157346/public/get-pip.py

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=45a2bb8bf2bb5eff16fdd00faef6f29731831c7c59bd9fc2bf1f3bed511ff1fe

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-10-03 23:34:16 UTC (buildkit.dockerfile.v0)

ARG MOVIEPILOT_VERSION

2023-10-03 23:34:16 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8 TZ=Asia/Shanghai HOME=/moviepilot CONFIG_DIR=/config TERM=xterm PUID=0 PGID=0 UMASK=000 PORT=3001 NGINX_PORT=3000 PROXY_HOST= MOVIEPILOT_AUTO_UPDATE=release AUTH_SITE=iyuu IYUU_SIGN=

2023-10-03 23:34:16 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2023-11-06 00:15:14 UTC (buildkit.dockerfile.v0)

RUN |1 MOVIEPILOT_VERSION=1.4.0 /bin/sh -c apt-get update -y && apt-get -y install musl-dev nginx gettext-base locales procps gosu bash wget curl busybox dumb-init jq haproxy fuse3 rsync && if [ "$(uname -m)" = "x86_64" ]; then ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1; elif [ "$(uname -m)" = "aarch64" ]; then ln -s /usr/lib/aarch64-linux-musl/libc.so /lib/libc.musl-aarch64.so.1; fi && curl https://rclone.org/install.sh | bash && apt-get autoremove -y && apt-get clean -y && rm -rf /tmp/* /moviepilot/.cache /var/lib/apt/lists/* /var/tmp/* # buildkit

2023-11-06 00:15:14 UTC (buildkit.dockerfile.v0)

COPY requirements.txt requirements.txt # buildkit

2023-11-06 00:16:38 UTC (buildkit.dockerfile.v0)

RUN |1 MOVIEPILOT_VERSION=1.4.0 /bin/sh -c apt-get update -y && apt-get install -y build-essential && pip install --upgrade pip && pip install Cython && pip install -r requirements.txt && playwright install-deps chromium && apt-get remove -y build-essential && apt-get autoremove -y && apt-get clean -y && rm -rf /tmp/* /moviepilot/.cache /var/lib/apt/lists/* /var/tmp/* # buildkit

2023-11-06 03:30:28 UTC (buildkit.dockerfile.v0)

COPY . . # buildkit

2023-11-06 03:30:29 UTC (buildkit.dockerfile.v0)

RUN |1 MOVIEPILOT_VERSION=1.4.0 /bin/sh -c cp -f /app/nginx.conf /etc/nginx/nginx.template.conf && cp -f /app/update /usr/local/bin/mp_update && cp -f /app/entrypoint /entrypoint && chmod +x /entrypoint /usr/local/bin/mp_update && mkdir -p ${HOME} /var/lib/haproxy/server-state && groupadd -r moviepilot -g 911 && useradd -r moviepilot -g moviepilot -d ${HOME} -s /bin/bash -u 911 && python_ver=$(python3 -V | awk '{print $2}') && echo "/app/" > /usr/local/lib/python${python_ver%.*}/site-packages/app.pth && echo 'fs.inotify.max_user_watches=5242880' >> /etc/sysctl.conf && echo 'fs.inotify.max_user_instances=5242880' >> /etc/sysctl.conf && locale-gen zh_CN.UTF-8 && FRONTEND_VERSION=$(curl -sL "https://api.github.com/repos/jxxghp/MoviePilot-Frontend/releases/latest" | jq -r .tag_name) && curl -sL "https://github.com/jxxghp/MoviePilot-Frontend/releases/download/${FRONTEND_VERSION}/dist.zip" | busybox unzip -d / - && mv /dist /public && curl -sL "https://github.com/jxxghp/MoviePilot-Plugins/archive/refs/heads/main.zip" | busybox unzip -d /tmp - && mv -f /tmp/MoviePilot-Plugins-main/plugins/* /app/app/plugins/ && curl -sL "https://github.com/jxxghp/MoviePilot-Resources/archive/refs/heads/main.zip" | busybox unzip -d /tmp - && mv -f /tmp/MoviePilot-Resources-main/resources/* /app/app/helper/ && rm -rf /tmp/* # buildkit

2023-11-06 03:30:29 UTC (buildkit.dockerfile.v0)

EXPOSE map[3000/tcp:{}]

2023-11-06 03:30:29 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-11-06 03:30:29 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint"]

Details
Created

2023-11-06 03:30:32 UTC

Size

289 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-11-06T03:44:50.308Z
  • org.opencontainers.image.description
    NAS媒体库自动化管理工具
  • org.opencontainers.image.licenses
    GPL-3.0
  • org.opencontainers.image.revision
    4072799c1367c154ee7ad7f9792e1c9d14a7ad17
  • org.opencontainers.image.source
    https://github.com/jxxghp/MoviePilot
  • org.opencontainers.image.title
    MoviePilot
  • org.opencontainers.image.url
    https://github.com/jxxghp/MoviePilot
  • org.opencontainers.image.version
    1.4.0

Environment
AUTH_SITE

iyuu

CONFIG_DIR

/config

GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

HOME

/moviepilot

IYUU_SIGN

LANG

C.UTF-8

MOVIEPILOT_AUTO_UPDATE

release

NGINX_PORT

3000

PATH

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

PGID

0

PORT

3001

PROXY_HOST

PUID

0

PYTHON_GET_PIP_SHA256

45a2bb8bf2bb5eff16fdd00faef6f29731831c7c59bd9fc2bf1f3bed511ff1fe

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/9af82b715db434abb94a0a6f3569f43e72157346/public/get-pip.py

PYTHON_PIP_VERSION

23.1.2

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.4

TERM

xterm

TZ

Asia/Shanghai

UMASK

000


Layers

[#000] sha256:41f92d5a73b9bee296c7b4a3817b28098b22fb60112608b42bb03570ca296115 - 9.91% (28.7 MB)

[#001] sha256:40589f858a36548f3a99431b7b0d983ba27e5350bd0a032910f956dc14bc77a3 - 0.35% (1.02 MB)

[#002] sha256:ebfe57ae3ec3cd387f0f58f3246abacb367501246ba38834c134db2e117a9922 - 3.97% (11.5 MB)

[#003] sha256:0cffb447bcdc453d0e4f501f9b8a46080ccf47c1945e63b39801bdea23c38cdf - 0.0% (242 Bytes)

[#004] sha256:f09dc7ca5e15b356f3b324046a9fac4bba7214fd246ff86d6be85d380930cffa - 1.11% (3.23 MB)

[#005] sha256:2990a990d49e67671f05e264761e847c52149209d84c21fee509d8c118fe0feb - 0.0% (93 Bytes)

[#006] sha256:75e581abfa42e6e168840c403b8996c3509ec7a06fef3d1516335414e885513d - 18.69% (54.1 MB)

[#007] sha256:fa33ee94bc0c4004db60ada2c6a5f77a5a65198167b1b471418494461c0e764b - 0.0% (740 Bytes)

[#008] sha256:2ca41695fd01ef23c0ee16bfbc589639e7980245b822a39989e8d98c4394458f - 63.98% (185 MB)

[#009] sha256:dff83ae8ec0effbd0d69a962d1ec7645cc37bb511456864a1d66b453fd86faab - 0.12% (344 KB)

[#010] sha256:46d177f1fddfd3af1123bf4474e8738763db0fba591e4cbd645488c114c28a7f - 1.88% (5.44 MB)


History
2023-08-15 23:40:11 UTC

/bin/sh -c #(nop) ADD file:ea912fd82699af55c10b8136b5dc4b5ce9d08b8a01f9c06f6783d94dc430335a in /

2023-08-15 23:40:11 UTC

/bin/sh -c #(nop) CMD ["bash"]

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; rm -rf /var/lib/apt/lists/* # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.4

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libexpat1-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; wget -O python.tar.xz.asc "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc"; GNUPGHOME="$(mktemp -d)"; export GNUPGHOME; gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$GPG_KEY"; gpg --batch --verify python.tar.xz.asc python.tar.xz; gpgconf --kill all; rm -rf "$GNUPGHOME" python.tar.xz.asc; mkdir -p /usr/src/python; tar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; rm python.tar.xz; cd /usr/src/python; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; ./configure --build="$gnuArch" --enable-loadable-sqlite-extensions --enable-optimizations --enable-option-checking=fatal --enable-shared --with-lto --with-system-expat --without-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:--Wl},--strip-all"; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" "PROFILE_TASK=${PROFILE_TASK:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:--Wl},-rpath='\$\$ORIGIN/../lib'" "PROFILE_TASK=${PROFILE_TASK:-}" python ; make install; cd /; rm -rf /usr/src/python; find /usr/local -depth \( \( -type d -a \( -name test -o -name tests -o -name idle_test \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \) \) \) -exec rm -rf '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python3 --version # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; for src in idle3 pydoc3 python3 python3-config; do dst="$(echo "$src" | tr -d 3)"; [ -s "/usr/local/bin/$src" ]; [ ! -e "/usr/local/bin/$dst" ]; ln -svT "$src" "/usr/local/bin/$dst"; done # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.1.2

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/9af82b715db434abb94a0a6f3569f43e72157346/public/get-pip.py

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=45a2bb8bf2bb5eff16fdd00faef6f29731831c7c59bd9fc2bf1f3bed511ff1fe

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version # buildkit

2023-07-22 09:54:20 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-10-03 23:34:16 UTC (buildkit.dockerfile.v0)

ARG MOVIEPILOT_VERSION

2023-10-03 23:34:16 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8 TZ=Asia/Shanghai HOME=/moviepilot CONFIG_DIR=/config TERM=xterm PUID=0 PGID=0 UMASK=000 PORT=3001 NGINX_PORT=3000 PROXY_HOST= MOVIEPILOT_AUTO_UPDATE=release AUTH_SITE=iyuu IYUU_SIGN=

2023-10-03 23:34:16 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2023-11-06 00:17:38 UTC (buildkit.dockerfile.v0)

RUN |1 MOVIEPILOT_VERSION=1.4.0 /bin/sh -c apt-get update -y && apt-get -y install musl-dev nginx gettext-base locales procps gosu bash wget curl busybox dumb-init jq haproxy fuse3 rsync && if [ "$(uname -m)" = "x86_64" ]; then ln -s /usr/lib/x86_64-linux-musl/libc.so /lib/libc.musl-x86_64.so.1; elif [ "$(uname -m)" = "aarch64" ]; then ln -s /usr/lib/aarch64-linux-musl/libc.so /lib/libc.musl-aarch64.so.1; fi && curl https://rclone.org/install.sh | bash && apt-get autoremove -y && apt-get clean -y && rm -rf /tmp/* /moviepilot/.cache /var/lib/apt/lists/* /var/tmp/* # buildkit

2023-11-06 00:17:38 UTC (buildkit.dockerfile.v0)

COPY requirements.txt requirements.txt # buildkit

2023-11-06 00:29:02 UTC (buildkit.dockerfile.v0)

RUN |1 MOVIEPILOT_VERSION=1.4.0 /bin/sh -c apt-get update -y && apt-get install -y build-essential && pip install --upgrade pip && pip install Cython && pip install -r requirements.txt && playwright install-deps chromium && apt-get remove -y build-essential && apt-get autoremove -y && apt-get clean -y && rm -rf /tmp/* /moviepilot/.cache /var/lib/apt/lists/* /var/tmp/* # buildkit

2023-11-06 03:30:28 UTC (buildkit.dockerfile.v0)

COPY . . # buildkit

2023-11-06 03:30:32 UTC (buildkit.dockerfile.v0)

RUN |1 MOVIEPILOT_VERSION=1.4.0 /bin/sh -c cp -f /app/nginx.conf /etc/nginx/nginx.template.conf && cp -f /app/update /usr/local/bin/mp_update && cp -f /app/entrypoint /entrypoint && chmod +x /entrypoint /usr/local/bin/mp_update && mkdir -p ${HOME} /var/lib/haproxy/server-state && groupadd -r moviepilot -g 911 && useradd -r moviepilot -g moviepilot -d ${HOME} -s /bin/bash -u 911 && python_ver=$(python3 -V | awk '{print $2}') && echo "/app/" > /usr/local/lib/python${python_ver%.*}/site-packages/app.pth && echo 'fs.inotify.max_user_watches=5242880' >> /etc/sysctl.conf && echo 'fs.inotify.max_user_instances=5242880' >> /etc/sysctl.conf && locale-gen zh_CN.UTF-8 && FRONTEND_VERSION=$(curl -sL "https://api.github.com/repos/jxxghp/MoviePilot-Frontend/releases/latest" | jq -r .tag_name) && curl -sL "https://github.com/jxxghp/MoviePilot-Frontend/releases/download/${FRONTEND_VERSION}/dist.zip" | busybox unzip -d / - && mv /dist /public && curl -sL "https://github.com/jxxghp/MoviePilot-Plugins/archive/refs/heads/main.zip" | busybox unzip -d /tmp - && mv -f /tmp/MoviePilot-Plugins-main/plugins/* /app/app/plugins/ && curl -sL "https://github.com/jxxghp/MoviePilot-Resources/archive/refs/heads/main.zip" | busybox unzip -d /tmp - && mv -f /tmp/MoviePilot-Resources-main/resources/* /app/app/helper/ && rm -rf /tmp/* # buildkit

2023-11-06 03:30:32 UTC (buildkit.dockerfile.v0)

EXPOSE map[3000/tcp:{}]

2023-11-06 03:30:32 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-11-06 03:30:32 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/entrypoint"]

Danger Zone
Delete Tag

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.

Delete