Block a user
itworx-mcp-hub/connector-mobilityops (rc-b7dbc44)
Published 2026-08-21 23:04:58 +00:00 by Jens
Installation
docker pull gitea.itworx.tech/jens/itworx-mcp-hub/connector-mobilityops:rc-b7dbc44sha256:f8e87c846e8aa1641fe2e7b5a61c0041d3fca4511d2bd22629083c1d9041ddab
Image Layers
| # 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-mobilityops |
| RUN |4 SERVICE_NAME=connector-mobilityops GIT_REVISION=b7dbc446eabf82aeff38f895f3dcb77a90819c6e SOURCE_DATE_EPOCH=1787353260 BUILD_DATE=2026-08-21T23:02:11Z /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-mobilityops GIT_REVISION=b7dbc446eabf82aeff38f895f3dcb77a90819c6e SOURCE_DATE_EPOCH=1787353260 BUILD_DATE=2026-08-21T23:02:11Z /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-mobilityops GIT_REVISION=b7dbc446eabf82aeff38f895f3dcb77a90819c6e SOURCE_DATE_EPOCH=1787353260 BUILD_DATE=2026-08-21T23:02:11Z /bin/sh -c chown -R 10001:10001 /opt/hub # buildkit |
| LABEL org.opencontainers.image.title=itworx-mcp-hub-connector-mobilityops org.opencontainers.image.revision=b7dbc446eabf82aeff38f895f3dcb77a90819c6e org.opencontainers.image.source=https://gitea.itworx.tech/jens/itworx-mcp-hub org.opencontainers.image.created=2026-08-21T23:02:11Z 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-21T23:02:11Z |
| org.opencontainers.image.revision | b7dbc446eabf82aeff38f895f3dcb77a90819c6e |
| org.opencontainers.image.source | https://gitea.itworx.tech/jens/itworx-mcp-hub |
| org.opencontainers.image.title | itworx-mcp-hub-connector-mobilityops |
| org.opencontainers.image.vendor | ITWorx |
Details
Versions (14)
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