Jens Caers Jens
  • Joined on 2026-06-16

itworx-mcp-hub/connector-unraid (rc-46f7bc2)

Published 2026-08-24 22:02:00 +00:00 by Jens

Installation

docker pull gitea.itworx.tech/jens/itworx-mcp-hub/connector-unraid:rc-46f7bc2
sha256:5811d8a8730ce899753d6e938bb9eef20cb45a2a2f4188ec97b40054735ecb47

Images

Digest OS / Arch Size
827c4852bc linux/amd64 68 MiB

Image Layers ( linux/amd64)

# debian.sh --arch 'amd64' out/ 'trixie' '@1783900800'
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates netbase tzdata ; apt-get dist-clean # buildkit
ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305
ENV PYTHON_VERSION=3.13.14
ENV PYTHON_SHA256=639e43243c620a308f968213df9e00f2f8f62332f7adbaa7a7eeb9783057c690
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg libbluetooth-dev libbz2-dev libc6-dev libdb-dev libffi-dev libgdbm-dev liblzma-dev libncursesw5-dev libreadline-dev libsqlite3-dev libssl-dev make tk-dev uuid-dev wget xz-utils zlib1g-dev ; wget -O python.tar.xz "https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz"; echo "$PYTHON_SHA256 *python.tar.xz" | sha256sum -c -; 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 $(test "${gnuArch%%-*}" != 'riscv64' && echo '--with-lto') --with-ensurepip ; nproc="$(nproc)"; EXTRA_CFLAGS="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; LDFLAGS="${LDFLAGS:-} -Wl,--strip-all"; arch="$(dpkg --print-architecture)"; arch="${arch##*-}"; case "$arch" in amd64|arm64) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer"; ;; i386) ;; *) EXTRA_CFLAGS="${EXTRA_CFLAGS:-} -fno-omit-frame-pointer"; ;; esac; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-}" ; rm python; make -j "$nproc" "EXTRA_CFLAGS=${EXTRA_CFLAGS:-}" "LDFLAGS=${LDFLAGS:-} -Wl,-rpath='\$\$ORIGIN/../lib'" 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 '{}' + ; ldconfig; apt-mark auto '.*' > /dev/null; apt-mark manual $savedAptMark; find /usr/local -type f -executable -not \( -name '*tkinter*' \) -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -rt dpkg-query --search | awk 'sub(":$", "", $1) { print $1 }' | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; apt-get dist-clean; export PYTHONDONTWRITEBYTECODE=1; python3 --version; pip3 --version # buildkit
RUN /bin/sh -c set -eux; for src in idle3 pip3 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
CMD ["python3"]
COPY infrastructure/images/install-base-security-updates.sh /tmp/install-base-security-updates.sh # buildkit
RUN /bin/sh -c sh /tmp/install-base-security-updates.sh && rm /tmp/install-base-security-updates.sh # buildkit
ARG SERVICE_NAME=itworx-mcp-hub-service
ARG GIT_REVISION
ARG SOURCE_DATE_EPOCH
ARG BUILD_DATE
ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PATH=/opt/venv/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin SERVICE_NAME=connector-unraid
RUN |4 SERVICE_NAME=connector-unraid GIT_REVISION=46f7bc201efe8b78cacbbc1b700b4aa7df214fab SOURCE_DATE_EPOCH=1787608618 BUILD_DATE=2026-08-24T23:56:58+02:00 /bin/sh -c groupadd --gid 10001 hub && useradd --uid 10001 --gid 10001 --create-home --shell /usr/sbin/nologin hub # buildkit
COPY pyproject.toml uv.lock /opt/hub/ # buildkit
RUN |4 SERVICE_NAME=connector-unraid GIT_REVISION=46f7bc201efe8b78cacbbc1b700b4aa7df214fab SOURCE_DATE_EPOCH=1787608618 BUILD_DATE=2026-08-24T23:56:58+02:00 /bin/sh -c python -m pip install --no-cache-dir uv==0.10.0 && cd /opt/hub && UV_PROJECT_ENVIRONMENT=/opt/venv uv sync --locked --no-dev --no-install-project && /usr/local/bin/python -m pip uninstall --yes uv # buildkit
COPY packages /opt/hub/packages # buildkit
COPY services /opt/hub/services # buildkit
COPY scripts /opt/hub/scripts # buildkit
COPY connectors /opt/hub/connectors # buildkit
COPY catalog /opt/hub/catalog # buildkit
COPY contracts /opt/hub/contracts # buildkit
COPY infrastructure/database /opt/hub/infrastructure/database # buildkit
COPY /workspace/apps/web/dist /opt/hub/web-dist # buildkit
RUN |4 SERVICE_NAME=connector-unraid GIT_REVISION=46f7bc201efe8b78cacbbc1b700b4aa7df214fab SOURCE_DATE_EPOCH=1787608618 BUILD_DATE=2026-08-24T23:56:58+02:00 /bin/sh -c chown -R 10001:10001 /opt/hub # buildkit
LABEL org.opencontainers.image.title=itworx-mcp-hub-connector-unraid org.opencontainers.image.revision=46f7bc201efe8b78cacbbc1b700b4aa7df214fab org.opencontainers.image.source=https://gitea.itworx.tech/jens/itworx-mcp-hub org.opencontainers.image.created=2026-08-24T23:56:58+02:00 org.opencontainers.image.vendor=ITWorx
WORKDIR /opt/hub
USER 10001:10001
EXPOSE map[8080/tcp:{}]
ENTRYPOINT ["python" "-m" "services.runtime"]

Labels

Key Value
org.opencontainers.image.created 2026-08-24T23:56:58+02:00
org.opencontainers.image.revision 46f7bc201efe8b78cacbbc1b700b4aa7df214fab
org.opencontainers.image.source https://gitea.itworx.tech/jens/itworx-mcp-hub
org.opencontainers.image.title itworx-mcp-hub-connector-unraid
org.opencontainers.image.vendor ITWorx
Details
Container
2026-08-24 22:02:00 +00:00
41
OCI / Docker
Versions (20) View all
rc-46f7bc2 2026-08-24
rc-3d389c2 2026-08-24
rc-e47689b 2026-08-23
rc-e2c6349 2026-08-22
rc-b7dbc44 2026-08-21