Namespace
alexxit
Image / Tag
go2rtc:1.8.2
Content Digest
sha256:4f2de7cf99aab5f187d62cab3142b6b2d47a6f8e738ff70c46e50a66d8354400
Details
Created

2023-11-04 15:52:47 UTC

Size

72.4 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-11-04T15:50:31.217Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MP4, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    50e2a626a6b5ba6bb9a8379148030eef60af851f
  • org.opencontainers.image.source
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.title
    go2rtc
  • org.opencontainers.image.url
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.version
    1.8.2

Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_GET_PIP_SHA256

22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.2.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.6


Layers

[#000] sha256:dc95107ad2a031a015320bb397f73ec151d738127175b31ad643120697dc7e90 - 4.26% (3.09 MB)

[#001] sha256:5c005ef6c38b6b37753fe5817a33f3bf7f1e6b90183dc5cfbf3d60c416a26381 - 0.82% (608 KB)

[#002] sha256:d6830045013d18b36cbaa1bc3dd99a7e6fa0c362b4aef1480a835b1bd18a5a93 - 17.08% (12.4 MB)

[#003] sha256:3c9194170b40ea876e1694d1750cdad716a982263c84541c66facd207685b482 - 0.0% (243 Bytes)

[#004] sha256:10e25c136e1b58d0bd2beae00fad162fe18c2b0aaf771ba1411ffc068a10ea79 - 4.1% (2.97 MB)

[#005] sha256:4bd59ab51db89e8629ea238c2f89e5a4e33dd5c23d4d05d4a837f1a9fbb10578 - 55.61% (40.2 MB)

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

[#007] sha256:139b11fddfc03f23c009f6c11d1eeb6d450dfd5398246795650c1c01e700c2b4 - 18.12% (13.1 MB)

[#008] sha256:2271f35f06aaca5e368f1063615d65650958f239a5135587f865ca211f2ed15c - 0.0% (96 Bytes)


History
2023-09-28 20:38:19 UTC

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

2023-09-28 20:38:20 UTC

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.6

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-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="-DTHREAD_STACK_SIZE=0x100000"; 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 '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version # buildkit

2023-10-15 23:10:23 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.2.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-11-04 15:50:54 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq alsa-plugins-pulse font-droid # buildkit

2023-11-04 15:50:54 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-11-04 15:50:54 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=386 /bin/sh -c if [ "${TARGETARCH}" = "amd64" ]; then apk add --no-cache libva-intel-driver intel-media-driver; fi # buildkit

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/sbin/tini" "--"]

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

CMD ["go2rtc" "-config" "/config/go2rtc.yaml"]

Details
Created

2023-11-04 15:52:48 UTC

Size

92.3 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-11-04T15:50:31.217Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MP4, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    50e2a626a6b5ba6bb9a8379148030eef60af851f
  • org.opencontainers.image.source
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.title
    go2rtc
  • org.opencontainers.image.url
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.version
    1.8.2

Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_GET_PIP_SHA256

22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.2.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.6


Layers

[#000] sha256:96526aa774ef0126ad0fe9e9a95764c5fc37f409ab9e97021e7b4775d82bf6fa - 3.51% (3.24 MB)

[#001] sha256:430548f4d4bf7cdf8dc1e14a535a6ae863ecace3300d9f2b84ced5df27d88721 - 0.64% (608 KB)

[#002] sha256:9ae8a48eae0348021298d595580e3bc544c4d77b1f60f0e6a1774c93bfa64515 - 13.28% (12.3 MB)

[#003] sha256:2d30bba99930234541d0f4a894c86eeabafd1aa045421eef4fcc18509305fec8 - 0.0% (240 Bytes)

[#004] sha256:3d288dfecc47052f2f766d9f21ead2cb7370bae50fed29ad2e4dbf46d0d572b7 - 3.21% (2.97 MB)

[#005] sha256:75bc35d693130ee539d4b91b2e2a6c92f6216a4710f23c2caf348ab685289d7b - 51.05% (47.1 MB)

[#006] sha256:53520256eda3572301b2432969e7477b6e554af55bdb4a6959d1c460c055a443 - 13.18% (12.2 MB)

[#007] sha256:46fc322950860b95b0b66d5e54a266a0cac94df93dd51f6bbdd92db01ced50aa - 15.12% (14 MB)

[#008] sha256:004720d3cd477ffe6235bbea73b6c4ba9cebc095897302a0443ae8752b4bf884 - 0.0% (96 Bytes)


History
2023-09-28 21:19:27 UTC

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

2023-09-28 21:19:27 UTC

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.6

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-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="-DTHREAD_STACK_SIZE=0x100000"; 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 '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version # buildkit

2023-10-15 23:10:23 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.2.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-11-04 15:50:54 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq alsa-plugins-pulse font-droid # buildkit

2023-11-04 15:50:55 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-11-04 15:50:55 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=amd64 /bin/sh -c if [ "${TARGETARCH}" = "amd64" ]; then apk add --no-cache libva-intel-driver intel-media-driver; fi # buildkit

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/sbin/tini" "--"]

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

CMD ["go2rtc" "-config" "/config/go2rtc.yaml"]

Details
Created

2023-11-04 15:52:47 UTC

Size

66.4 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-11-04T15:50:31.217Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MP4, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    50e2a626a6b5ba6bb9a8379148030eef60af851f
  • org.opencontainers.image.source
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.title
    go2rtc
  • org.opencontainers.image.url
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.version
    1.8.2

Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_GET_PIP_SHA256

22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.2.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.6


Layers

[#000] sha256:622a0779436eb93ceea635e910268f867c2eba47d4f62f0bd45f0bd165af3572 - 4.17% (2.77 MB)

[#001] sha256:364e2c266a2eb25f3869ece74ff2cf2a4a9403e65aacc7f91c45ab4d169fdbbc - 0.89% (607 KB)

[#002] sha256:6f1175e47484c29e33e17e4ebafd15908d3bc903ae9a2ebb1ad460ba6ef86fcc - 17.25% (11.5 MB)

[#003] sha256:000b669e4685e6f4ef25bfcd18f2905fca8201cb137cb99bb143f32eb1658259 - 0.0% (240 Bytes)

[#004] sha256:e1366b29f6a1c349aab51f3e57198c65904c8b8fb2ac0b9097f78014f09ad8cd - 4.47% (2.97 MB)

[#005] sha256:675b596fe81c4129c7420d8adf19f668537d25d4321212aa25c51dcc85438129 - 53.21% (35.3 MB)

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

[#007] sha256:e2f408d52d353b33e97c90a74d7cf6ea6ad8ee7d96f4658908b413f21fe22d3b - 20.0% (13.3 MB)

[#008] sha256:2271f35f06aaca5e368f1063615d65650958f239a5135587f865ca211f2ed15c - 0.0% (96 Bytes)


History
2023-09-28 20:59:24 UTC

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

2023-09-28 20:59:24 UTC

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.6

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-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="-DTHREAD_STACK_SIZE=0x100000"; 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 '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version # buildkit

2023-10-15 23:10:23 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.2.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-11-04 15:51:02 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq alsa-plugins-pulse font-droid # buildkit

2023-11-04 15:51:03 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-11-04 15:51:03 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=arm /bin/sh -c if [ "${TARGETARCH}" = "amd64" ]; then apk add --no-cache libva-intel-driver intel-media-driver; fi # buildkit

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/sbin/tini" "--"]

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-11-04 15:52:47 UTC (buildkit.dockerfile.v0)

CMD ["go2rtc" "-config" "/config/go2rtc.yaml"]

Details
Created

2023-11-04 15:52:48 UTC

Size

75.2 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-11-04T15:50:31.217Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MP4, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    50e2a626a6b5ba6bb9a8379148030eef60af851f
  • org.opencontainers.image.source
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.title
    go2rtc
  • org.opencontainers.image.url
    https://github.com/AlexxIT/go2rtc
  • org.opencontainers.image.version
    1.8.2

Environment
GPG_KEY

A035C8C19219BA821ECEA86B64E628F8D684696D

LANG

C.UTF-8

PATH

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

PYTHON_GET_PIP_SHA256

22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.2.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.6


Layers

[#000] sha256:579b34f0a95bb83b3acd6b3249ddc52c3d80f5c84b13c944e9e324feb86dd329 - 4.23% (3.18 MB)

[#001] sha256:470a5c3c55f59be376114c21d8af7503dcfe565914793980e142fce64f303a52 - 0.79% (610 KB)

[#002] sha256:996e3c226332eb520972471283f85aa69d009f05984583363fc76bc51d8a77de - 16.43% (12.4 MB)

[#003] sha256:f1ec4cba99f71c896a5c41096e292f1faafeba30f71bda105eee3d15a4575df4 - 0.0% (240 Bytes)

[#004] sha256:a37b698d02e0e4884f695dbfd399bf89f28e67ad9a5390c32319b58c9d73c6bb - 3.94% (2.97 MB)

[#005] sha256:352f1fbc33ff808f740fdb9a96dc9e4bc507cc951ebdf16fd1e47157ecaa3fa4 - 57.43% (43.2 MB)

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

[#007] sha256:37d3329e38dcc57d738a2721912ef6eca5c8d0472359136b0661ca4de1cb0043 - 17.18% (12.9 MB)

[#008] sha256:004720d3cd477ffe6235bbea73b6c4ba9cebc095897302a0443ae8752b4bf884 - 0.0% (96 Bytes)


History
2023-09-28 20:39:33 UTC

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

2023-09-28 20:39:34 UTC

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache ca-certificates tzdata ; # buildkit

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.6

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apk add --no-cache --virtual .build-deps gnupg tar xz bluez-dev bzip2-dev dpkg-dev dpkg expat-dev findutils gcc gdbm-dev libc-dev libffi-dev libnsl-dev libtirpc-dev linux-headers make ncurses-dev openssl-dev pax-utils readline-dev sqlite-dev tcl-dev tk tk-dev util-linux-dev xz-dev zlib-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="-DTHREAD_STACK_SIZE=0x100000"; 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 '{}' + ; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec scanelf --needed --nobanner --format '%n#p' '{}' ';' | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' | xargs -rt apk add --no-network --virtual .python-rundeps ; apk del --no-network .build-deps; python3 --version # buildkit

2023-10-15 23:10:23 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.2.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

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

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11

2023-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; 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-10-15 23:10:23 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-11-04 15:51:02 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq alsa-plugins-pulse font-droid # buildkit

2023-11-04 15:51:03 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-11-04 15:51:03 UTC (buildkit.dockerfile.v0)

RUN |1 TARGETARCH=arm64 /bin/sh -c if [ "${TARGETARCH}" = "amd64" ]; then apk add --no-cache libva-intel-driver intel-media-driver; fi # buildkit

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["/sbin/tini" "--"]

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-11-04 15:52:48 UTC (buildkit.dockerfile.v0)

CMD ["go2rtc" "-config" "/config/go2rtc.yaml"]

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