Namespace
alexxit
Image / Tag
go2rtc:1.6.1
Content Digest
sha256:bde1b4f1cd746bb3986405f6852eb99518607de05470021829494283694ea330
Details
Created

2023-07-20 05:16:03 UTC

Size

72.2 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-07-20T05:12:57.295Z
  • 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
    a8526ae4eb512a9d5894f841c80243cebdaaa4d0
  • 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.6.1

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

96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.1.2

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.4


Layers

[#000] sha256:b3f50075abd13aad1cb7d8c1427aa59d7fcac88f3690d3f9c3efdbec80fd0856 - 4.27% (3.08 MB)

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

[#002] sha256:abc5118146e88eeef8efedbe266f129a8817ef57f3178c60767cbb69e1523e0f - 16.54% (11.9 MB)

[#003] sha256:c69c2ccb7ceb870cbc5297471e77b49d9ea8d0ee1571c0c005fb596f8336cbcd - 0.0% (245 Bytes)

[#004] sha256:adb943107cb1c4ad38531ce38e926772b3c78a7e793544bd158fbbef263715d0 - 4.08% (2.95 MB)

[#005] sha256:e4fa7df6ccfd5675b40a6db4e0208cf6d04996c1fde8fd0385093f3496e9db8a - 55.67% (40.2 MB)

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

[#007] sha256:8927003b91556c5a779c64feecf41c0eb9cbb6080d12c601a35f659207fa050f - 18.62% (13.5 MB)

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


History
2023-06-14 22:33:22 UTC

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

2023-06-14 22:33:22 UTC

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.4

2023-06-07 09:49:17 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-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.1.2

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

2023-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-07-20 05:07:37 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:07:49 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-07-20 05:07:49 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-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-07-20 05:16:05 UTC

Size

92.1 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-07-20T05:12:57.295Z
  • 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
    a8526ae4eb512a9d5894f841c80243cebdaaa4d0
  • 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.6.1

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

96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.1.2

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.4


Layers

[#000] sha256:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 - 3.52% (3.24 MB)

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

[#002] sha256:78d6a2cf8d41aebce8ae9289a7e596309e3460ba5389cf0572fd74cba15945d0 - 12.88% (11.9 MB)

[#003] sha256:129922027d238a209465eaf34096fbbb50a23d90811c6b4d90f573aadc90a3eb - 0.0% (243 Bytes)

[#004] sha256:c15df0cb361b482c19f7c0f4f2940d370aa6a24e51bf7c6fdf1de0667f8b079c - 3.2% (2.95 MB)

[#005] sha256:ae772f439d62a4e95e93846673350839bc69f20f9614d099e5775e8de6968c94 - 51.15% (47.1 MB)

[#006] sha256:b1f2f6c94dad36b7288795e52f0125ff627b8fd0ba83212834ee2ac79b815d9b - 13.2% (12.2 MB)

[#007] sha256:470c875ccac0a19dd0313837a0daeb57f03559d71e505dd7998ebb2ac6f01529 - 15.41% (14.2 MB)

[#008] sha256:22bafa4810f51bc852fe537d49efff6aab4df04b933babe71a75b1e00f8fcf13 - 0.0% (96 Bytes)


History
2023-06-14 20:41:58 UTC

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

2023-06-14 20:41:59 UTC

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.4

2023-06-07 09:49:17 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-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.1.2

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

2023-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-07-20 05:07:37 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:07:38 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-07-20 05:07:38 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-07-20 05:16:05 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-07-20 05:16:05 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:16:05 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-07-20 05:16:05 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-07-20 05:16:05 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-07-20 05:16:02 UTC

Size

66.2 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-07-20T05:12:57.295Z
  • 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
    a8526ae4eb512a9d5894f841c80243cebdaaa4d0
  • 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.6.1

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

96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.1.2

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.4


Layers

[#000] sha256:633ba29fd335042456b6e2c073636f6fa30de56f1331c442914739b92a479974 - 4.18% (2.76 MB)

[#001] sha256:1236e9bf79acbf88e15dcaae128ebaf83d42568946907850955a6b758231acc3 - 0.9% (607 KB)

[#002] sha256:36438a72fad1dd233ea47d90da0d2b53d0b873cb3a448c2adde49c2c0d73a8d1 - 16.73% (11.1 MB)

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

[#004] sha256:9868c439a9e1499be5e299ccc670b26b7d8fcb1fdf841581da80d2fa9f5c72c9 - 4.45% (2.95 MB)

[#005] sha256:a95a0d19831034a9705a7937c7b2e9121ae20e593fe9059e92f5bdafaa88bba9 - 53.33% (35.3 MB)

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

[#007] sha256:b1f4b6ffb1ecb5c81abaa03f2bedd49e9b89bf9272aa91064ec67ba63dca1282 - 20.42% (13.5 MB)

[#008] sha256:1f8d7eafdb4b1ece33169eeeafcef649a2e29cc41699f01af37a4b6fda98356a - 0.0% (96 Bytes)


History
2023-06-14 22:36:15 UTC

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

2023-06-14 22:36:15 UTC

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.4

2023-06-07 09:49:17 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-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.1.2

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

2023-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-07-20 05:07:46 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:07:49 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-07-20 05:07:49 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-07-20 05:16:02 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-07-20 05:16:02 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:16:02 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-07-20 05:16:02 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-07-20 05:16:02 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-07-20 05:16:03 UTC

Size

74.9 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-07-20T05:12:57.295Z
  • 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
    a8526ae4eb512a9d5894f841c80243cebdaaa4d0
  • 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.6.1

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

96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

23.1.2

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.4


Layers

[#000] sha256:8c6d1654570f041603f4cef49c320c8f6f3e401324913009d92a19132cbf1ac0 - 4.24% (3.18 MB)

[#001] sha256:3e16b87699a2fb305f2d22d89b472ce8276d64d0c7941f07ae144bb18bcccba3 - 0.8% (610 KB)

[#002] sha256:e6893d85e389858cd548798c9e251dfa11b8a6784cc63731006d59b06c5a60f6 - 15.95% (11.9 MB)

[#003] sha256:19585b7d51b51df4fd1bf14f789976f9f2cb7ebe84ed3b79683e3275d20776ba - 0.0% (242 Bytes)

[#004] sha256:baa939e42c13940a82196ff83563c7e8671c3c61c5bfa868330e320d168fd300 - 3.93% (2.95 MB)

[#005] sha256:ec83915568943f9e6df85ec95801d3d04ee470bdb5242539c5526b921cd4d7bd - 57.64% (43.2 MB)

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

[#007] sha256:6177efb190f57d53226be8d80fa6e4e740b0c87d7b3b2ce5afe19d0e815d2868 - 17.44% (13.1 MB)

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


History
2023-06-14 20:48:58 UTC

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

2023-06-14 20:48:58 UTC

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.4

2023-06-07 09:49:17 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-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=23.1.2

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

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

2023-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207

2023-06-07 09:49:17 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-06-07 09:49:17 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2023-07-20 05:07:49 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:07:49 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-07-20 05:07:49 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-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

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

2023-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-07-20 05:16:03 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-07-20 05:16:03 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