Namespace
getsentry
Image / Tag
snuba:e31f3c3
Content Digest
sha256:e60c1eafda02015c15368472490cc3e71362073851fc336da20d9b6f3aba960b
Details
Created

2022-08-16 17:59:38 UTC

Size

118 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

5aefe6ade911d997af080b315ebcb7f882212d070465df544e1175ac2be519b4

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/5eaac1050023df1f5c98b173b248c260023f2278/public/get-pip.py

PYTHON_PIP_VERSION

22.0.4

PYTHON_SETUPTOOLS_VERSION

57.5.0

PYTHON_VERSION

3.8.13

SNUBA_RELEASE

e31f3c31fc3abed571f7bf3bfbece8e4de61096c

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:1efc276f4ff952c055dea726cfc96ec6a4fdb8b62d9eed816bd2b788f2860ad7 - 25.29% (29.9 MB)

[#001] sha256:126aaa6587b8608b62fa39019a891e98460e23bad2d04fb235c4dc8fae2adf3c - 0.87% (1.03 MB)

[#002] sha256:77858e4d7c8685e74279275d5ea2055e8b5b27b6c1cc0e540f7f9eff83464556 - 9.14% (10.8 MB)

[#003] sha256:02a70450a6ce8da602f156ea0e6bacfa954e3d0cbe3e091c3d6ce6d605b05e51 - 0.0% (234 Bytes)

[#004] sha256:5a70c235da50c4835e985f341d6d52e6d91af967dd4120f3acdca52fa34280a1 - 2.56% (3.03 MB)

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

[#006] sha256:670e6a7300cd9b1bdb95daf77a5c3758b42393aaeb85c7697cfa2420871713ac - 0.0% (141 Bytes)

[#007] sha256:3b627c3684626ac89bbff12594e1109db8170c7ade17251eed35e3720238aafb - 0.0% (565 Bytes)

[#008] sha256:43fa2b0edcf131b3a12169aec3b04fe8c2a7915ef303ac8fbad23909788c46d9 - 59.77% (70.7 MB)

[#009] sha256:c00d3ed73fd107b089334b91248fa32e37694a770d3e1927137ef27d6f882091 - 0.59% (712 KB)

[#010] sha256:4a0a7d08711d97f59da6b1cfeeaf242f040b06b97e450c1239b92996fc404c45 - 1.71% (2.02 MB)

[#011] sha256:e54beca3efcb6bca8bc6b43093ea3e14fe174b18f6e54c09d69ef130da8bcd87 - 0.06% (78.3 KB)


History
2022-08-02 01:20:04 UTC

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

2022-08-02 01:20:05 UTC

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

2022-08-02 09:39:09 UTC

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

2022-08-02 09:39:09 UTC

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

2022-08-02 09:39:14 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-08-02 11:14:11 UTC

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

2022-08-02 11:42:48 UTC

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

2022-08-02 11:49:13 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-08-02 11:49:13 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-08-02 11:49:13 UTC

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

2022-08-02 11:49:14 UTC

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

2022-08-12 02:48:27 UTC

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

2022-08-12 02:48:27 UTC

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

2022-08-12 02:48:39 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-08-12 02:48:39 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