Namespace
alexxit
Image / Tag
go2rtc:1.9.2
Content Digest
sha256:209e2cf06639b372729549d1d93a89f2037eb9283e904f6dd688789174559159
Details
Created

2024-05-17 12:59:20 UTC

Size

73 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-05-17T12:57:49.194Z
  • 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
    b2399f3bb35fe4f5642b9d98eca756ab448fc850
  • 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.9.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

dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

24.0

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.9


Layers

[#000] sha256:4a0759b5afbffdc507fbb4e32b3a139063c3a5c0829f811973850447f98830ae - 4.24% (3.09 MB)

[#001] sha256:01a34d54da6b28f14fccd8a0567b4daee5f9b0af090511ebab4d4a64639783d1 - 0.81% (606 KB)

[#002] sha256:5fed2277201d3b60650ad097768e8398a1ff8051614bdd182e570a28b5b79240 - 16.79% (12.3 MB)

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

[#004] sha256:e557aaa9944c2f59f3d4d92914ccdba07c91bd7855cfe0e2458dd50a2301b707 - 4.09% (2.99 MB)

[#005] sha256:68b64bf751445d28ab8917b45c309d7c0c18daa74a5811299fa72eff9d3cead1 - 55.82% (40.8 MB)

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

[#007] sha256:a4cc0f37469885ef7f81369e5f62d6cc2f878d8ca13256a89d838d80e4079513 - 18.25% (13.3 MB)

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


History
2024-01-27 00:38:19 UTC

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

2024-01-27 00:38:19 UTC

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=24.0

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-05-15 02:37:09 UTC (buildkit.dockerfile.v0)

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

2024-05-15 02:37:15 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-05-15 02:37:15 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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

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

Details
Created

2024-05-17 12:59:20 UTC

Size

91.5 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-05-17T12:57:49.194Z
  • 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
    b2399f3bb35fe4f5642b9d98eca756ab448fc850
  • 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.9.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

dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

24.0

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.9


Layers

[#000] sha256:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 - 3.55% (3.25 MB)

[#001] sha256:c3cdf40b8bda8e4ca4be0f5fa7f1d128907271efcbc72cbfc7c8b0f939ec25ea - 0.65% (605 KB)

[#002] sha256:ac499ccf2147611bc4388058b362c0bcc1ca63ec1a320a2f4ed5c0a9a76d08ea - 13.21% (12.1 MB)

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

[#004] sha256:76351c33299b900aa86b33176eac198fc861d4a7978046db4ae8b319e148088a - 3.26% (2.99 MB)

[#005] sha256:25e7f312d9b7f525a7060859c4c9bff22be0c0bfb1f1a8e700e8f3e0ef9fbdd5 - 50.4% (46.1 MB)

[#006] sha256:6c5f427e93bb9aeba215adef7ae4c0333164664ee6c363cd4b7494a501f7ebfa - 13.37% (12.2 MB)

[#007] sha256:d2b0fcef40e5de01ca36830d7705cec3fd3e8a210f6de4756e2d8d527eb26ed2 - 15.56% (14.2 MB)

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


History
2024-01-27 00:30:48 UTC

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

2024-01-27 00:30:48 UTC

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=24.0

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-05-15 02:37:09 UTC (buildkit.dockerfile.v0)

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

2024-05-15 02:37:11 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-05-15 02:37:11 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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

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

Details
Created

2024-05-17 12:59:20 UTC

Size

67 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-05-17T12:57:49.194Z
  • 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
    b2399f3bb35fe4f5642b9d98eca756ab448fc850
  • 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.9.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

dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

24.0

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.9


Layers

[#000] sha256:fda0ff469afd28d9cfbb946e8e0a3c911c591a2691bea62be9187e45a1c50549 - 4.15% (2.78 MB)

[#001] sha256:bd70e72a4529ff9cb7c900eadffd231d6a25591f0314f8df1c1db3749588f53c - 0.88% (605 KB)

[#002] sha256:52f3e1fbba4b9c1c8a3dea878f6a8adaa73d470fac28d8ed1c5e327ab153d50e - 16.87% (11.3 MB)

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

[#004] sha256:18ca2f5eaf5020f2c6d6f5370c41f6e3f528a09ad663989936f2ec5a751a4aae - 4.46% (2.99 MB)

[#005] sha256:871e7f057b3496dd5dc641620e01299494ffe874834c947d156f551208751e71 - 53.46% (35.8 MB)

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

[#007] sha256:616595c35cf079672bce5648aafe1887b5b875846f04c228f597de0ca78172cf - 20.17% (13.5 MB)

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


History
2024-01-27 00:14:54 UTC

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

2024-01-27 00:14:54 UTC

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=24.0

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-05-15 02:37:15 UTC (buildkit.dockerfile.v0)

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

2024-05-15 02:37:15 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-05-15 02:37:15 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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

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

Details
Created

2024-05-17 12:59:20 UTC

Size

75.3 MB

Content Digest
Labels
  • org.opencontainers.image.created
    2024-05-17T12:57:49.194Z
  • 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
    b2399f3bb35fe4f5642b9d98eca756ab448fc850
  • 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.9.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

dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

24.0

PYTHON_SETUPTOOLS_VERSION

65.5.1

PYTHON_VERSION

3.11.9


Layers

[#000] sha256:bca4290a96390d7a6fc6f2f9929370d06f8dfcacba591c76e3d5c5044e7f420c - 4.24% (3.19 MB)

[#001] sha256:3271878bd42aa15c91b1403355a07f43bfbfb1e55ba1bd1839ff11a1413d0369 - 0.79% (608 KB)

[#002] sha256:c22ba0582179db3ca9de445594fad0c0870740382833467d9ac128df9cd7f778 - 16.14% (12.2 MB)

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

[#004] sha256:574c220aa246fce76bd394d892a22e651510fd47b231fdd9bdbb410d7feea2d0 - 3.96% (2.99 MB)

[#005] sha256:bb0bf8be0e834897103daa80de1bc99d8aafbd3f4d24bed38547233c01283de9 - 57.39% (43.2 MB)

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

[#007] sha256:a657efcb4dd8133dd068b11e78da94c0437b1f7b777026e09f08d5ea7c02a374 - 17.47% (13.2 MB)

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


History
2024-01-26 23:44:47 UTC

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

2024-01-26 23:44:47 UTC

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV GPG_KEY=A035C8C19219BA821ECEA86B64E628F8D684696D

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_VERSION=3.11.9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_PIP_VERSION=24.0

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_SETUPTOOLS_VERSION=65.5.1

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=dfe9fd5c28dc98b5ac17979a953ea550cec37ae1b47a5116007395bfacff2ab9

2024-04-03 15:49:18 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

2024-04-03 15:49:18 UTC (buildkit.dockerfile.v0)

CMD ["python3"]

2024-05-15 02:37:18 UTC (buildkit.dockerfile.v0)

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

2024-05-15 02:37:15 UTC (buildkit.dockerfile.v0)

ARG TARGETARCH

2024-05-15 02:37:15 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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

COPY / / # buildkit

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

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

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

VOLUME [/config]

2024-05-17 12:59:20 UTC (buildkit.dockerfile.v0)

WORKDIR /config

2024-05-17 12:59:20 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