Namespace
getsentry
Image / Tag
snuba:24374db385bf20a072553b2351e63968f2197d14
Content Digest
sha256:a994452f7f8ba5d403f84fab722acbd3e142a1ac12868125dc2936da9b3e0781
Details
Created

2020-09-04 01:35:49 UTC

Size

108 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

d4d62a0850fe0c2e6325b2cc20d818c580563de5a2038f917e3cb0e25280b4d1

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/5578af97f8b2b466f4cdbebe18a3ba2d48ad1434/get-pip.py

PYTHON_PIP_VERSION

20.2.2

PYTHON_VERSION

3.8.5

SNUBA_RELEASE

24374db385bf20a072553b2351e63968f2197d14

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:bf59529304463f62efa7179fa1a32718a611528cc4ce9f30c0d1bbc6724ec3fb - 24.0% (25.8 MB)

[#001] sha256:385bb58d08e62a5f1ce007200cd30794be92530c300519417607392423a316df - 2.44% (2.62 MB)

[#002] sha256:ab14b629693da79014bf92f40229e2ad0c31a0c5e4e11d68c5c6f184c5d57097 - 9.23% (9.94 MB)

[#003] sha256:7a5d07f2fd13fb183676364da34f5d87bbf7bc175359fa672dda3042082ad802 - 0.0% (233 Bytes)

[#004] sha256:25a245937421e366dd7b88de82eaaa5a4610549c0a9cd7025d41fa43a2ef039f - 2.13% (2.3 MB)

[#005] sha256:c398ca24294eabe0fc427e8656b94d4c83654ce59f7c437b9c8e216761351e34 - 0.0% (1.7 KB)

[#006] sha256:ce1051b8cca82ebf170cb7be35247ded225c1bb37b703558b61dc5a2606f26c1 - 0.0% (166 Bytes)

[#007] sha256:cae6567d39e75a512f807c33e4b7587e8c4e40a98b70f110f7d92bc210007317 - 0.0% (940 Bytes)

[#008] sha256:cec9686dddaef73c176f5456af5e68af05240f50ed41d1892127ea50fe11475b - 1.06% (1.15 MB)

[#009] sha256:0df814a11b929cdafeac0baaede4efa56617c6cf2ecd19f6c4b4601ede5c9e1b - 0.34% (378 KB)

[#010] sha256:b3aa8aaf84e7c0fdb6dbe69bc81eef76894b88f0d2f00c29014b7716994ae030 - 0.34% (378 KB)

[#011] sha256:4e6f6b5e2a2af32336ca61ffce7038d28ff7ed4b892195dd8eabffaf89ba957f - 60.45% (65.1 MB)

[#012] sha256:1a6bb4b0b0dedca09a5ee842655ad9ccc77eeb608fb5b21e43adb3a4da53d87d - 0.0% (356 Bytes)


History
2020-08-04 15:42:51 UTC

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

2020-08-04 15:42:51 UTC

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

2020-08-04 15:53:44 UTC

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

2020-08-04 15:53:44 UTC

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

2020-08-04 15:53:51 UTC

/bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates netbase && rm -rf /var/lib/apt/lists/*

2020-08-04 15:53:51 UTC

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

2020-08-04 16:14:25 UTC

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

2020-08-04 16:25:37 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y --no-install-recommends dpkg-dev gcc 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 $(command -v gpg > /dev/null || echo 'gnupg dirmngr') && 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" && export GNUPGHOME="$(mktemp -d)" && gpg --batch --keyserver ha.pool.sks-keyservers.net --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 -xJC /usr/src/python --strip-components=1 -f 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 --with-system-ffi --without-ensurepip && make -j "$(nproc)" LDFLAGS="-Wl,--strip-all" && make install && 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 '*.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

2020-08-04 16:25:37 UTC

/bin/sh -c cd /usr/local/bin && ln -s idle3 idle && ln -s pydoc3 pydoc && ln -s python3 python && ln -s python3-config python-config

2020-08-11 20:36:50 UTC

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

2020-08-11 20:36:50 UTC

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

2020-08-11 20:36:50 UTC

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

2020-08-11 20:37:03 UTC

/bin/sh -c set -ex; 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 --check --strict -; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; python get-pip.py --disable-pip-version-check --no-cache-dir "pip==$PYTHON_PIP_VERSION" ; pip --version; 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' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py

2020-08-11 20:37:03 UTC

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

2020-08-12 16:43:53 UTC

/bin/sh -c groupadd -r snuba && useradd -r -g snuba snuba

2020-08-12 16:43:54 UTC

/bin/sh -c mkdir -p /usr/src/snuba

2020-08-12 16:43:54 UTC

/bin/sh -c #(nop) WORKDIR /usr/src/snuba

2020-08-12 16:43:58 UTC

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

2020-08-12 16:44:08 UTC

/bin/sh -c set -x && export GOSU_VERSION=1.11 && fetchDeps=" dirmngr gnupg wget " && apt-get update && apt-get install -y --no-install-recommends $fetchDeps && rm -rf /var/lib/apt/lists/* && wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" && wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" && export GNUPGHOME="$(mktemp -d)" && for key in B42F6819007F00F88E364FD4036A9C25BF357DD4 ; do gpg --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys "$key" || gpg --batch --keyserver hkp://ipv4.pool.sks-keyservers.net --recv-keys "$key" || gpg --batch --keyserver hkp://pgp.mit.edu:80 --recv-keys "$key" ; done && gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu && gpgconf --kill all && rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc && chmod +x /usr/local/bin/gosu && gosu nobody true && apt-get purge -y --auto-remove $fetchDeps

2020-09-04 01:34:09 UTC

/bin/sh -c #(nop) COPY dir:d1aa3dc6bb32e493a21eaef6e3d7be3b717f419f6e3197301dfdbdef608cda11 in /usr/src/snuba

2020-09-04 01:34:10 UTC

/bin/sh -c chown -R snuba:snuba /usr/src/snuba/

2020-09-04 01:34:11 UTC

/bin/sh -c #(nop) ENV PIP_NO_CACHE_DIR=off PIP_DISABLE_PIP_VERSION_CHECK=on

2020-09-04 01:35:47 UTC

/bin/sh -c set -ex; buildDeps=' git gcc libc6-dev liblz4-dev libpcre3-dev wget '; apt-get update; apt-get install -y $buildDeps --no-install-recommends; rm -rf /var/lib/apt/lists/*; pip install -e .; 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; snuba --help; apt-get purge -y --auto-remove $buildDeps

2020-09-04 01:35:48 UTC

/bin/sh -c #(nop) ARG SNUBA_VERSION_SHA

2020-09-04 01:35:48 UTC

/bin/sh -c #(nop) ENV SNUBA_RELEASE=24374db385bf20a072553b2351e63968f2197d14 FLASK_DEBUG=0 PYTHONUNBUFFERED=1 PYTHONDONTWRITEBYTECODE=1 UWSGI_ENABLE_METRICS=true UWSGI_NEED_PLUGIN=/var/lib/uwsgi/dogstatsd UWSGI_STATS_PUSH=dogstatsd:127.0.0.1:8126 UWSGI_DOGSTATSD_EXTRA_TAGS=service:snuba

2020-09-04 01:35:49 UTC

/bin/sh -c #(nop) EXPOSE 1218

2020-09-04 01:35:49 UTC

/bin/sh -c #(nop) COPY file:238ae86e6311ae13b44e29eff53770b544ac6cc431c26447a2779065fceb654d in ./

2020-09-04 01:35:49 UTC

/bin/sh -c #(nop) ENTRYPOINT ["./docker_entrypoint.sh"]

2020-09-04 01:35:49 UTC

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

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