mastodon-tagcollector (sha256:05efad741b00b1d310a9f442ce366724cea51cfce8825fe52744f4aaf7b25e65)
Installation
docker pull git.desertflood.com/jmartindf/mastodon-tagcollector@sha256:05efad741b00b1d310a9f442ce366724cea51cfce8825fe52744f4aaf7b25e65
sha256:05efad741b00b1d310a9f442ce366724cea51cfce8825fe52744f4aaf7b25e65
About this package
Scan Mastodon, keeping track of the most-used tags across a slice of the Fediverse.
Image layers
ADD file:9deb26e1dbc258df47629e6f8fbcea4e4b54e7673537cc925db16af858d9cc8d in / |
CMD ["bash"] |
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 ; rm -rf /var/lib/apt/lists/* # buildkit |
ENV GPG_KEY=7169605F62C751356D054A26A821E680E5FA6305 |
ENV PYTHON_VERSION=3.12.1 |
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 libexpat1-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"; 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="$(dpkg-buildflags --get CFLAGS)"; LDFLAGS="$(dpkg-buildflags --get LDFLAGS)"; 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 '{}' + ; 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 -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python3 --version # buildkit |
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 |
ENV PYTHON_PIP_VERSION=23.2.1 |
ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/4cfa4081d27285bda1220a62a5ebf5b4bd749cdb/public/get-pip.py |
ENV PYTHON_GET_PIP_SHA256=9cc01665956d22b3bf057ae8287b035827bfd895da235bcea200ab3b811790b6 |
RUN /bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends wget; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum -c -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; export PYTHONDONTWRITEBYTECODE=1; python get-pip.py --disable-pip-version-check --no-cache-dir --no-compile "pip==$PYTHON_PIP_VERSION" ; rm -f get-pip.py; pip --version # buildkit |
CMD ["python3"] |
ARG APPLICATION_NAME=myapp |
ENV APP_DATA=/opt/tagcollector PYTHONPATH=/tagcollector VIRTUAL_ENV=/tagcollector VIRTUAL_ENVIRONMENT_PATH=/tagcollector PYTHONUNBUFFERED=1 PYTHONDONTWRITEBYTECODE=1 PYTHONFAULTHANDLER=1 |
ENV PATH=/tagcollector/bin:/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
RUN |1 APPLICATION_NAME=tagcollector /bin/sh -c useradd --uid 1001 --create-home --user-group saguaro && mkdir -p "${APP_DATA}" "${VIRTUAL_ENV}" && chown -R saguaro:saguaro "${APP_DATA}" "${VIRTUAL_ENV}" # buildkit |
COPY /tagcollector/ /tagcollector # buildkit |
RUN |1 APPLICATION_NAME=tagcollector /bin/sh -c /install-packages.sh upgrade # buildkit |
WORKDIR /opt/tagcollector |
LABEL org.opencontainers.image.authors=Joe Martin <joe@desertflood.com> maintainer=Joe Martin <joe@desertflood.com> org.opencontainers.image.created=2024-01-12T19:50:10Z org.label-schema.build-date=2024-01-12T19:50:10Z org.opencontainers.image.url=https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/DOCKER.md org.label-schema.url=https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/DOCKER.md org.opencontainers.image.source=https://git.desertflood.com/jmartindf/mastodon-tagcollector org.label-schema.vcs-url=https://git.desertflood.com/jmartindf/mastodon-tagcollector org.opencontainers.image.version=0.3.0 org.label-schema.version=0.3.0 org.opencontainers.image.revision=0078f6e org.label-schema.vcs-ref=0078f6e org.opencontainers.image.vendor=Desertflood org.label-schema.vendor=Desertflood org.opencontainers.image.title=mastodon-tagcollector org.label-schema.name=mastodon-tagcollector org.opencontainers.image.description=Scan Mastodon, keeping track of the most-used tags across a slice of the Fediverse. org.label-schema.description=Scan Mastodon, keeping track of the most-used tags across a slice of the Fediverse. org.opencontainers.image.documentation=https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/README.md org.label-schema.usage=https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/README.md org.opencontainers.image.licenses=BlueOak-1.0.0 org.label-schema.schema-version=1.0 org.label-schema.docker.cmd=docker run --rm --read-only --env-file tagcollector.env --mount type=volume,src=tagdata,target=/opt/tagcollector --name tagcollector --stop-signal SIGTERM --stop-signal SIGINT --stop-timeout 120 git.desertflood.com/jmartindf/mastodon-tagcollector:0.3 |
USER 1001 |
CMD ["tagcollector"] |
Labels
Key | Value |
---|---|
maintainer | Joe Martin <joe@desertflood.com> |
org.label-schema.build-date | 2024-01-12T19:50:10Z |
org.label-schema.description | Scan Mastodon, keeping track of the most-used tags across a slice of the Fediverse. |
org.label-schema.docker.cmd | docker run --rm --read-only --env-file tagcollector.env --mount type=volume,src=tagdata,target=/opt/tagcollector --name tagcollector --stop-signal SIGTERM --stop-signal SIGINT --stop-timeout 120 git.desertflood.com/jmartindf/mastodon-tagcollector:0.3 |
org.label-schema.name | mastodon-tagcollector |
org.label-schema.schema-version | 1.0 |
org.label-schema.url | https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/DOCKER.md |
org.label-schema.usage | https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/README.md |
org.label-schema.vcs-ref | 0078f6e |
org.label-schema.vcs-url | https://git.desertflood.com/jmartindf/mastodon-tagcollector |
org.label-schema.vendor | Desertflood |
org.label-schema.version | 0.3.0 |
org.opencontainers.image.authors | Joe Martin <joe@desertflood.com> |
org.opencontainers.image.created | 2024-01-12T19:50:10Z |
org.opencontainers.image.description | Scan Mastodon, keeping track of the most-used tags across a slice of the Fediverse. |
org.opencontainers.image.documentation | https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/README.md |
org.opencontainers.image.licenses | BlueOak-1.0.0 |
org.opencontainers.image.revision | 0078f6e |
org.opencontainers.image.source | https://git.desertflood.com/jmartindf/mastodon-tagcollector |
org.opencontainers.image.title | mastodon-tagcollector |
org.opencontainers.image.url | https://git.desertflood.com/jmartindf/mastodon-tagcollector/src/branch/main/DOCKER.md |
org.opencontainers.image.vendor | Desertflood |
org.opencontainers.image.version | 0.3.0 |
Details
2024-01-12 12:50:35 -07:00
Versions (10)
View all
Container
0
OCI / Docker
linux/amd64
Joe Martin <joe@desertflood.com>
BlueOak-1.0.0
49 MiB