Namespace
alexxit
Image / Tag
go2rtc:1.4.0
Content Digest
sha256:e39aebbbed47a62c3036927fbf7fe95e8f5ee8661982313361bfe7ad58c849ed
Details
Created

2023-04-23 05:11:33 UTC

Size

63.9 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-04-23T05:08:54.235Z
  • 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
    9268acf1cac4327f8b6fc2d1c9922494b11565cc
  • 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.4.0

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.3


Layers

[#000] sha256:b2b0f0faedf1b87a3c77cf90d027fb7a25aa67f35400244a4655ad5842a757e4 - 5.09% (3.25 MB)

[#001] sha256:fb21e203f441ce48e6d75bfba7f7bb2b88a9e28f1090f0eabcd3580b1f697364 - 0.93% (608 KB)

[#002] sha256:f458a811c87441bb50c4de52ef34e5d52b43427955df62d86f5bb0efd33aa6c3 - 18.92% (12.1 MB)

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

[#004] sha256:32c00cf39f29d14b75621f21d4402d7e2983dc0f0ad9fe959a1a3ca037c6cf2f - 4.6% (2.94 MB)

[#005] sha256:9dda8bace161390184a59a8bb866d136cf499245b6e259537abf1668deb45caf - 50.2% (32.1 MB)

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

[#007] sha256:a932b5395f0df649b665d81063452ac973357aa204506ec141a87d5603c60dd1 - 20.26% (12.9 MB)

[#008] sha256:53d1089e960535dee2b64f959d1e40ffccfc64758f273de88a757fb16da91ba0 - 0.0% (102 Bytes)


History
2023-03-29 17:38:30 UTC

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

2023-03-29 17:38:30 UTC

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.3

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

ENV PYTHON_PIP_VERSION=22.3.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-04-23 05:09:23 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:09:23 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-04-23 05:09:23 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-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-04-23 05:11:34 UTC

Size

82.6 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-04-23T05:08:54.235Z
  • 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
    9268acf1cac4327f8b6fc2d1c9922494b11565cc
  • 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.4.0

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.3


Layers

[#000] sha256:f56be85fc22e46face30e2c3de3f7fe7c15f8fd7c4e5add29d7f64b87abdaa09 - 3.89% (3.22 MB)

[#001] sha256:ea5757f4b3f88ed50d687e1bd40a5e2f81e4a5c3fced11b753c589d2c6381fd5 - 0.72% (608 KB)

[#002] sha256:bd0557c686d8a5e4cde5f1a595873ab1b32f86f1f1f3449e25b78126e3f7670f - 14.38% (11.9 MB)

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

[#004] sha256:b39eb9b4269d2c5e5a06952a620cd9e8f282062254ee29730d71783061c6f317 - 3.56% (2.94 MB)

[#005] sha256:3e83f54205432daed5b382d3e949dfb61d6f6b76c689633a82ae48d0fe862cb7 - 45.85% (37.9 MB)

[#006] sha256:9b36bf8fe94c5fb8ed74567affbcc6435a38bd4cf22613892aa1f4411aa381bb - 15.1% (12.5 MB)

[#007] sha256:7ccd63bfc72efe849af28859b29498825e25a27ab12e84545da8824d8573a400 - 16.49% (13.6 MB)

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


History
2023-03-29 18:19:24 UTC

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

2023-03-29 18:19:24 UTC

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.3

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

ENV PYTHON_PIP_VERSION=22.3.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-04-23 05:09:23 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:09:25 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-04-23 05:09:25 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-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-04-23 05:11:33 UTC

Size

57.8 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-04-23T05:08:54.235Z
  • 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
    9268acf1cac4327f8b6fc2d1c9922494b11565cc
  • 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.4.0

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.3


Layers

[#000] sha256:fd4b2aeb476b6c2c0c3049dae919de20fe09e90deac95e3181d717055cbe6707 - 4.73% (2.74 MB)

[#001] sha256:076a9ab44767f047661f5face75434e9f445a4eb51049a29432fee27378d95c6 - 1.03% (609 KB)

[#002] sha256:e93221c2ef1cca57d196a37464627e73a94af412ec126c4145dcc6765d6fa728 - 19.28% (11.1 MB)

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

[#004] sha256:e1de5eb49bbd8f3eb81c82b6dd7762a92eec95a9942f8b7b4c93ce4deda47fda - 5.08% (2.94 MB)

[#005] sha256:57f901ef67dcfe3812ed9e795a939dcd4d997eacfa12608d1c3d3fcd897ba5ff - 47.56% (27.5 MB)

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

[#007] sha256:6ca5f712b33acc05a969a0eff9406ca24a927d72eca377fa92dd308a706b3770 - 22.32% (12.9 MB)

[#008] sha256:53d1089e960535dee2b64f959d1e40ffccfc64758f273de88a757fb16da91ba0 - 0.0% (102 Bytes)


History
2023-03-29 18:03:38 UTC

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

2023-03-29 18:03:38 UTC

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.3

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

ENV PYTHON_PIP_VERSION=22.3.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-04-23 05:09:27 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:09:27 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-04-23 05:09:27 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-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-04-23 05:11:33 UTC (buildkit.dockerfile.v0)

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

Details
Created

2023-04-23 05:11:34 UTC

Size

63.2 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2023-04-23T05:08:54.235Z
  • 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
    9268acf1cac4327f8b6fc2d1c9922494b11565cc
  • 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.4.0

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.3


Layers

[#000] sha256:c41833b44d910632b415cd89a9cdaa4d62c9725dc56c99a7ddadafd6719960f9 - 4.92% (3.11 MB)

[#001] sha256:74b3a271aef90b25de0dfddcaf22c79ffa1fc32f1e9eac89f21fdd8162c30666 - 0.94% (610 KB)

[#002] sha256:5fd9bafbcd0902041a3f44c51f472061aa4e93d8755f80f25d200f9b3a597763 - 18.8% (11.9 MB)

[#003] sha256:6c89684ac2a52710830ffb671582de220d030b83718680da6a7c6d3408dbf769 - 0.0% (246 Bytes)

[#004] sha256:9e95ea84eb4890ec274983dda85d7b32e41adbd283ad61c3dd895fcbf158a3f3 - 4.65% (2.94 MB)

[#005] sha256:5b2f5f6cff9136d3b11d4b849476dd4fb62bca1cb7a48bbc6ba4d8a5ca815403 - 50.84% (32.1 MB)

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

[#007] sha256:3ecbd633c5277a0f0407ed53be9686ab03fb8dc1db7b6f1c346141c0d2a29b3a - 19.86% (12.5 MB)

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


History
2023-03-29 17:39:18 UTC

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

2023-03-29 17:39:18 UTC

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.3

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

ENV PYTHON_PIP_VERSION=22.3.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

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

2023-04-05 16:50:03 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=394be00f13fa1b9aaa47e911bdb59a09c3b2986472130f30aa0bfaf7f3980637

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

CMD ["python3"]

2023-04-23 05:09:29 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:09:29 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2023-04-23 05:09:29 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-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2023-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

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

2023-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2023-04-23 05:11:34 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2023-04-23 05:11:34 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