millaguie
  • Joined on 2025-07-23

ojeo-bot (ab4b144)

Published 2026-03-01 16:17:13 +01:00 by millaguie

Installation

docker pull tea.millaguie.net/millaguie/ojeo-bot:ab4b144
sha256:eb1f6d5458c6a93cda2cfb171f94dda3aaf60e01bd8e9533c413057ead542f7f

Image Layers

# debian.sh --arch 'amd64' out/ 'trixie' '@1769990400'
ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
ENV LANG=C.UTF-8
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=A035C8C19219BA821ECEA86B64E628F8D684696D
ENV PYTHON_VERSION=3.11.14
ENV PYTHON_SHA256=8d3ed8ec5c88c1c95f5e558612a725450d2452813ddad5e58fdb1a53b1209b78
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"; 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 install --disable-pip-version-check --no-cache-dir --no-compile 'setuptools==79.0.1' 'wheel<0.46' ; 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"]
WORKDIR /app
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends git openssh-client lftp tesseract-ocr tesseract-ocr-spa tesseract-ocr-eng libnss3 libnspr4 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libdbus-1-3 libxkbcommon0 libatspi2.0-0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libasound2 libpango-1.0-0 libcairo2 && rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c useradd -m -u 1000 newsbot && mkdir -p /home/newsbot/.ssh /app/archive && chown -R newsbot:newsbot /app /home/newsbot/.ssh && chmod 700 /home/newsbot/.ssh # buildkit
COPY --chown=newsbot:newsbot pyproject.toml readme.md ./ # buildkit
RUN /bin/sh -c pip install --no-cache-dir . && rm -rf /root/.cache/pip # buildkit
USER newsbot
RUN /bin/sh -c playwright install chromium # buildkit
RUN /bin/sh -c git config --global user.email "newsbot@ojeo.es" && git config --global user.name "Newsbot" # buildkit
USER root
COPY --chmod=755 docker-entrypoint.sh /usr/local/bin/ # buildkit
COPY --chown=newsbot:newsbot newsbot/ newsbot/ # buildkit
COPY --chown=newsbot:newsbot alembic/ alembic/ # buildkit
COPY --chown=newsbot:newsbot alembic.ini . # buildkit
COPY --chown=newsbot:newsbot scripts/ scripts/ # buildkit
USER newsbot
EXPOSE map[8000/tcp:{}]
HEALTHCHECK &{["CMD-SHELL" "python -c \"from newsbot.config import get_settings; get_settings()\" || exit 1"] "30s" "10s" "1m0s" "0s" '\x03'}
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["python" "-m" "newsbot"]

Labels

Key Value
org.opencontainers.image.created 2026-03-01T15:15:12.472Z
org.opencontainers.image.description
org.opencontainers.image.licenses
org.opencontainers.image.revision ab4b14433bbc7b92e337738a0398f1d420c1cd74
org.opencontainers.image.source https://tea.millaguie.net/millaguie/ojeo-bot
org.opencontainers.image.title ojeo-bot
org.opencontainers.image.url https://tea.millaguie.net/millaguie/ojeo-bot
org.opencontainers.image.version latest
Details
Container
2026-03-01 16:17:13 +01:00
20
OCI / Docker
linux/amd64
615 MiB
Versions (134) View all
latest 2026-03-01
ab4b144 2026-03-01
ae60530 2026-02-20
8877a67 2026-02-15
68bb42e 2026-02-15