Namespace
getsentry
Image / Tag
snuba:6ccd58c
Content Digest
sha256:c8e0074fcf6986a44bd2c9c375b68398766f932d9bfb66f7cbb787c746e50eca
Details
Created

2022-07-25 19:29:51 UTC

Size

120 MB

Content Digest
Environment
FLASK_DEBUG

0

GPG_KEY

E3FF2839C048B25C084DEBE9B26995E310250568

LANG

C.UTF-8

PATH

/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PIP_DISABLE_PIP_VERSION_CHECK

on

PIP_NO_CACHE_DIR

off

PYTHONDONTWRITEBYTECODE

1

PYTHONUNBUFFERED

1

PYTHON_GET_PIP_SHA256

ba3ab8267d91fd41c58dbce08f76db99f747f716d85ce1865813842bb035524d

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

22.0.4

PYTHON_SETUPTOOLS_VERSION

57.5.0

PYTHON_VERSION

3.8.13

SNUBA_RELEASE

6ccd58c30f7041fef40c13461e7aa661f59bb617

UWSGI_DOGSTATSD_EXTRA_TAGS

service:snuba

UWSGI_ENABLE_METRICS

true

UWSGI_NEED_PLUGIN

/var/lib/uwsgi/dogstatsd

UWSGI_STATS_PUSH

dogstatsd:127.0.0.1:8126


Layers

[#000] sha256:461246efe0a75316d99afdbf348f7063b57b0caeee8daab775f1f08152ea36f4 - 24.95% (29.9 MB)

[#001] sha256:e37ebf440f7f53eb0584605f7c63a95b42583a1372913da9061b6fdb7b535663 - 0.86% (1.03 MB)

[#002] sha256:6f668c4783382b31feea0b50a736eb38cab248fa5d3ff50edb18361b97be3c30 - 9.02% (10.8 MB)

[#003] sha256:33c68732c70263ef65d4fbec6081f5aece39eb923150090ae31d9fdc60a1c5a4 - 0.0% (234 Bytes)

[#004] sha256:0ac96ef71e90047fde11b18e309b2c288d1f2990bc1dae64599daf7a12b99433 - 2.52% (3.02 MB)

[#005] sha256:005aae25005c5e133603cc9903a34801e7de0def7ef6bc92efd82a3144f1be11 - 0.0% (780 Bytes)

[#006] sha256:1db2baa62511bcff6f8b67fb6f43f8571a8e249885347263cf79ff2d308966e0 - 0.0% (143 Bytes)

[#007] sha256:7a327ec8917e528cf2b68be7255dc549bb0cea85b71e74f98820ebf27ea6e702 - 0.0% (711 Bytes)

[#008] sha256:fa72bc9c5391db1c8bf456d6001df1e9b2bbbbaf6d9d732399adfdfa66c7332e - 60.46% (72.5 MB)

[#009] sha256:b9d3c461e1ebf7880d788d2e349d08275058443ffcdd52b263a05f854f7a3671 - 0.57% (698 KB)

[#010] sha256:80b1629eec0cf7d09fbd2e7e526879b6b9a39535533cf06719b19ba3a62e0ddf - 1.56% (1.87 MB)

[#011] sha256:646dc7f9549630131088b40dd9c39d3f973982c8079b33ca41b79eba47d37c15 - 0.07% (81.2 KB)


History
2022-07-12 01:20:10 UTC

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

2022-07-12 01:20:10 UTC

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

2022-07-12 10:38:38 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2022-07-12 10:38:38 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2022-07-12 10:38:43 UTC

/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/*

2022-07-12 12:04:41 UTC

/bin/sh -c #(nop) ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568

2022-07-12 12:33:33 UTC

/bin/sh -c #(nop) ENV PYTHON_VERSION=3.8.13

2022-07-13 05:55:00 UTC

/bin/sh -c set -eux; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends dpkg-dev gcc gnupg dirmngr libbluetooth-dev libbz2-dev libc6-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; command -v gpgconf > /dev/null && 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-system-expat --without-ensurepip ; nproc="$(nproc)"; make -j "$nproc" LDFLAGS="-Wl,--strip-all" ; 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' \) \) -o \( -type f -a -name 'wininst-*.exe' \) \) -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 '/=>/ { print $(NF-1) }' | 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

2022-07-13 05:55:01 UTC

/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

2022-07-13 05:55:01 UTC

/bin/sh -c #(nop) ENV PYTHON_PIP_VERSION=22.0.4

2022-07-13 05:55:01 UTC

/bin/sh -c #(nop) ENV PYTHON_SETUPTOOLS_VERSION=57.5.0

2022-07-13 05:55:01 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/6ce3639da143c5d79b44f94b04080abf2531fd6e/public/get-pip.py

2022-07-13 05:55:01 UTC

/bin/sh -c #(nop) ENV PYTHON_GET_PIP_SHA256=ba3ab8267d91fd41c58dbce08f76db99f747f716d85ce1865813842bb035524d

2022-07-13 05:55:13 UTC

/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" "setuptools==$PYTHON_SETUPTOOLS_VERSION" ; rm -f get-pip.py; pip --version

2022-07-13 05:55:14 UTC

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

0001-01-01 00:00:00 UTC

RUN set -ex; apt-get update; apt-get install --no-install-recommends -y libexpat1 liblz4-1 libpcre3 ; rm -rf /var/lib/apt/lists/*

0001-01-01 00:00:00 UTC

WORKDIR /usr/src/snuba

0001-01-01 00:00:00 UTC

COPY requirements.txt ./

0001-01-01 00:00:00 UTC

RUN set -ex; buildDeps=' gcc libc6-dev liblz4-dev libpcre3-dev wget '; apt-get update; apt-get install -y $buildDeps --no-install-recommends; [ $(uname -m) = "aarch64" ] && apt-get install -y librdkafka-dev --no-install-recommends; pip install -r requirements.txt; mkdir /tmp/uwsgi-dogstatsd; wget -O - https://github.com/DataDog/uwsgi-dogstatsd/archive/bc56a1b5e7ee9e955b7a2e60213fc61323597a78.tar.gz | tar -xvz -C /tmp/uwsgi-dogstatsd --strip-components=1; uwsgi --build-plugin /tmp/uwsgi-dogstatsd; rm -rf /tmp/uwsgi-dogstatsd .uwsgi_plugins_builder; mkdir -p /var/lib/uwsgi; mv dogstatsd_plugin.so /var/lib/uwsgi/; uwsgi --need-plugin=/var/lib/uwsgi/dogstatsd --help > /dev/null; apt-get purge -y --auto-remove $buildDeps; rm -rf /var/lib/apt/lists/*;

0001-01-01 00:00:00 UTC

COPY . ./

0001-01-01 00:00:00 UTC

RUN set -ex; groupadd -r snuba --gid 1000; useradd -r -g snuba --uid 1000 snuba; chown -R snuba:snuba ./; pip install -e .; snuba --help;

0001-01-01 00:00:00 UTC

RUN pip install -r requirements-test.txt

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