Namespace
alexxit
Image / Tag
go2rtc:1.3.1
Content Digest
sha256:f46d394de072e931e678b3086cdfeec0676e792004260a2c9ab8acdb989e9cdd
Details
Created

2023-03-26 12:04:41 UTC

Size

65.7 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-03-26T12:01:18.639Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    71051e7dcfd5c7fd2be67efb2d5d2b7b1b71d667
  • 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.3.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

394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

22.3.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.2


Layers

[#000] sha256:b3e346c15c2377ec0e75cc9efa98baecd58b0e9bb92f0ec07eeda0bcc7e67fc7 - 4.95% (3.25 MB)

[#001] sha256:e4af4fa00c1fbc669c4405ac05102d358dc84d6552f911e2ad0092e5b267bca5 - 0.9% (609 KB)

[#002] sha256:8788c26a9aa1fced1c79947fc1f590bc6e8f4693b005cfa4af32d7547f883e82 - 21.58% (14.2 MB)

[#003] sha256:ae71a1f4c1518b8662e753d5a8570d885790d739ead02c9ca17f3484394f59ce - 0.0% (241 Bytes)

[#004] sha256:50ad1267bf93f640083b55dc1fae99029f911bab8ed25d59ccfc350e002e505a - 4.47% (2.94 MB)

[#005] sha256:c5bfc875372107493d311d7fddfc9763264ba1876d60a1cb12f83c7d0d20a50f - 48.79% (32.1 MB)

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

[#007] sha256:8d33116cce8fcd000f8e810ad397a5676f9566acfd75c6feaed0e3fa0259ea09 - 19.3% (12.7 MB)

[#008] sha256:134f23119f249aecf2d00b29da1538d73a86f667d4c45cc5f6c3ad1a759d4153 - 0.0% (102 Bytes)


History
2023-02-10 21:24:23 UTC

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

2023-02-10 21:24:24 UTC

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.2

2023-03-10 23:32:52 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; command -v gpgconf > /dev/null && 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-03-10 23:32:52 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-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=22.3.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-03-26 12:01:57 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq # buildkit

2023-03-26 12:01:57 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-03-26 12:01:57 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-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

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

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-03-26 12:04:41 UTC

Size

84.4 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-03-26T12:01:18.639Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    71051e7dcfd5c7fd2be67efb2d5d2b7b1b71d667
  • 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.3.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

394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

22.3.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.2


Layers

[#000] sha256:63b65145d645c1250c391b2d16ebe53b3747c295ca8ba2fcb6b0cf064a4dc21c - 3.81% (3.22 MB)

[#001] sha256:e9f9cf5029d271a7f108bc0ad050e3772c5047c61a6e1f7413bc751dc4f01653 - 0.7% (608 KB)

[#002] sha256:d47ea573a7911457dc1b9f91c991dd22366e36b455251f21e6d0b3a056b3a4c4 - 16.54% (14 MB)

[#003] sha256:37906e6a7a2e6f773bfef2bcb87c5fa77cb2150296f96a8d7ecb9cc5d4eea5a9 - 0.0% (241 Bytes)

[#004] sha256:ab9f45de3756d3acbcbac0257fc4686a28fc5ada48917ee9eb4a77afa9ce011d - 3.48% (2.94 MB)

[#005] sha256:acbfd37ef52e9fe9296aede4b7dd0ce6be855577cc78123a8df3379e66729f8b - 44.89% (37.9 MB)

[#006] sha256:cf00dce09e691e0337ba69d77e32a753139032e95fc7a607b3a16b3abbc4b174 - 14.79% (12.5 MB)

[#007] sha256:064133569d61921168899aae528557f815da312388f9019cca089fd6418705cc - 15.78% (13.3 MB)

[#008] sha256:134f23119f249aecf2d00b29da1538d73a86f667d4c45cc5f6c3ad1a759d4153 - 0.0% (102 Bytes)


History
2023-02-11 04:46:42 UTC

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

2023-02-11 04:46:42 UTC

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.2

2023-03-10 23:32:52 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; command -v gpgconf > /dev/null && 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-03-10 23:32:52 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-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=22.3.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-03-26 12:01:57 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq # buildkit

2023-03-26 12:02:01 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-03-26 12:02:01 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-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

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

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-03-26 12:04:41 UTC

Size

59.2 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-03-26T12:01:18.639Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    71051e7dcfd5c7fd2be67efb2d5d2b7b1b71d667
  • 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.3.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

394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

22.3.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.2


Layers

[#000] sha256:6fb81ff47bd6d7db0ed86c9b951ad6417ec73ab60af6d22daa604076a902629c - 4.62% (2.74 MB)

[#001] sha256:3837a018a99ab92d5cc1231e517d6f7417069b03f0ee99a50e1ba778f59f3e59 - 1.01% (609 KB)

[#002] sha256:f77ff039e9a5f5a5096e3a83e30e1405f0229f317df6b18f1b577799118c8e11 - 21.62% (12.8 MB)

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

[#004] sha256:25377668443bf871002c0bebf005d22ce6bcce606d52febda4196e042f4b6e2f - 4.96% (2.94 MB)

[#005] sha256:07e0c1f46044027869d7add32b19d5545e9c1eaddb6bde1f9d8280f5d22b371b - 46.45% (27.5 MB)

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

[#007] sha256:b193d974633fc379e9216b1df56a9ca45e75eee3209946e7795b577fae0ed8c8 - 21.34% (12.6 MB)

[#008] sha256:134f23119f249aecf2d00b29da1538d73a86f667d4c45cc5f6c3ad1a759d4153 - 0.0% (102 Bytes)


History
2023-02-10 21:51:31 UTC

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

2023-02-10 21:51:31 UTC

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.2

2023-03-10 23:32:52 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; command -v gpgconf > /dev/null && 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-03-10 23:32:52 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-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=22.3.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-03-26 12:02:09 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq # buildkit

2023-03-26 12:02:10 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-03-26 12:02:10 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-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

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

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-03-26 12:04:41 UTC

Size

64.9 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-03-26T12:01:18.639Z
  • org.opencontainers.image.description
    Ultimate camera streaming application with support RTSP, RTMP, HTTP-FLV, WebRTC, MSE, HLS, MJPEG, HomeKit, FFmpeg, etc.
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    71051e7dcfd5c7fd2be67efb2d5d2b7b1b71d667
  • 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.3.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

394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

22.3.1

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.2


Layers

[#000] sha256:af6eaf76a39c2d3e7e0b8a0420486e3df33c4027d696c076a99a3d0ac09026af - 4.8% (3.11 MB)

[#001] sha256:4492ee92a598b6b5bff04be03765b46d047886af9b379eb1f7d9836ab0a61497 - 0.92% (610 KB)

[#002] sha256:deaf240365cbb903e4486d11ba0894e0240da72673a62cb1461533ab6f8ec1cd - 21.31% (13.8 MB)

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

[#004] sha256:9fc1e43fcdf0d65f69cdbd2c477cae64636427f5b66e076e721b4ed50213f934 - 4.53% (2.94 MB)

[#005] sha256:be2d748bd91726997c88f644d2f7ed153aa0364c71a370fc9fab3818bd2661cb - 49.53% (32.1 MB)

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

[#007] sha256:bffa6e9ab0e87cbacb498161b68ff8eed8faf4effe5fd48fb09c9df22172aada - 18.92% (12.3 MB)

[#008] sha256:134f23119f249aecf2d00b29da1538d73a86f667d4c45cc5f6c3ad1a759d4153 - 0.0% (102 Bytes)


History
2023-02-10 21:24:08 UTC

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

2023-02-10 21:24:08 UTC

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.2

2023-03-10 23:32:52 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; command -v gpgconf > /dev/null && 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-03-10 23:32:52 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-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=22.3.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

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

2023-03-10 23:32:52 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-03-26 12:02:10 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c apk add --no-cache tini ffmpeg bash curl jq # buildkit

2023-03-26 12:02:10 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-03-26 12:02:10 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-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

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

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-03-26 12:04:41 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-03-26 12:04:41 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