Dockerfile 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. FROM python:3.11.8-slim-bookworm
  2. LABEL maintainer="oss@sentry.io"
  3. LABEL org.opencontainers.image.title="Sentry"
  4. LABEL org.opencontainers.image.description="Sentry runtime image"
  5. LABEL org.opencontainers.image.url="https://sentry.io/"
  6. LABEL org.opencontainers.image.documentation="https://develop.sentry.dev/self-hosted/"
  7. LABEL org.opencontainers.image.vendor="Functional Software, Inc."
  8. LABEL org.opencontainers.image.authors="oss@sentry.io"
  9. # add our user and group first to make sure their IDs get assigned consistently
  10. RUN groupadd -r sentry && useradd -r -m -g sentry sentry
  11. ARG GOSU_VERSION=1.17
  12. ARG GOSU_SHA256=bbc4136d03ab138b1ad66fa4fc051bafc6cc7ffae632b069a53657279a450de3
  13. ARG TINI_VERSION=0.19.0
  14. ARG TINI_SHA256=93dcc18adc78c65a028a84799ecf8ad40c936fdfc5f2a57b1acda5a8117fa82c
  15. RUN set -x \
  16. && buildDeps=" \
  17. wget \
  18. " \
  19. && apt-get update && apt-get install -y --no-install-recommends $buildDeps \
  20. && rm -rf /var/lib/apt/lists/* \
  21. # grab gosu for easy step-down from root
  22. && wget --quiet -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-amd64" \
  23. && echo "$GOSU_SHA256 /usr/local/bin/gosu" | sha256sum --check --status \
  24. && chmod +x /usr/local/bin/gosu \
  25. # grab tini for signal processing and zombie killing
  26. && wget --quiet -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini-amd64" \
  27. && echo "$TINI_SHA256 /usr/local/bin/tini" | sha256sum --check --status \
  28. && chmod +x /usr/local/bin/tini \
  29. && apt-get purge -y --auto-remove $buildDeps
  30. WORKDIR /usr/src/sentry
  31. ENV PATH=/.venv/bin:$PATH PIP_NO_CACHE_DIR=1 PIP_DISABLE_PIP_VERSION_CHECK=1
  32. RUN python3 -m venv /.venv
  33. ENV \
  34. # Sentry config params
  35. SENTRY_CONF=/etc/sentry \
  36. # UWSGI dogstatsd plugin
  37. UWSGI_NEED_PLUGIN=/var/lib/uwsgi/dogstatsd \
  38. # grpcio>1.30.0 requires this, see requirements.txt for more detail.
  39. GRPC_POLL_STRATEGY=epoll1
  40. # Install dependencies first to leverage Docker layer caching.
  41. COPY requirements-frozen.txt /tmp/requirements-frozen.txt
  42. RUN set -x \
  43. && buildDeps="" \
  44. # uwsgi-dogstatsd
  45. && buildDeps="$buildDeps \
  46. gcc \
  47. libpcre3-dev \
  48. wget \
  49. zlib1g-dev \
  50. " \
  51. && apt-get update \
  52. && apt-get install -y --no-install-recommends $buildDeps \
  53. && pip install -r /tmp/requirements-frozen.txt \
  54. && mkdir /tmp/uwsgi-dogstatsd \
  55. # pinned the same as in getsentry
  56. && wget -O - https://github.com/DataDog/uwsgi-dogstatsd/archive/1a04f784491ab0270b4e94feb94686b65d8d2db1.tar.gz | \
  57. tar -xzf - -C /tmp/uwsgi-dogstatsd --strip-components=1 \
  58. && UWSGI_NEED_PLUGIN="" uwsgi --build-plugin /tmp/uwsgi-dogstatsd \
  59. && mkdir -p /var/lib/uwsgi \
  60. && mv dogstatsd_plugin.so /var/lib/uwsgi/ \
  61. && rm -rf /tmp/requirements-frozen.txt /tmp/uwsgi-dogstatsd .uwsgi_plugins_builder \
  62. && apt-get purge -y --auto-remove $buildDeps \
  63. && apt-get clean \
  64. && rm -rf /var/lib/apt/lists/* \
  65. # Fully verify that the C extension is correctly installed, it unfortunately
  66. # requires a full check into maxminddb.extension.Reader
  67. && python -c 'import maxminddb.extension; maxminddb.extension.Reader' \
  68. && mkdir -p $SENTRY_CONF
  69. COPY . .
  70. RUN python3 -m tools.fast_editable --path .
  71. RUN sentry help | sed '1,/Commands:/d' | awk '{print $1}' > /sentry-commands.txt
  72. COPY ./self-hosted/sentry.conf.py ./self-hosted/config.yml $SENTRY_CONF/
  73. COPY ./self-hosted/docker-entrypoint.sh /
  74. RUN : double-check some built files are available \
  75. && test -f /usr/src/sentry/src/sentry/loader/_registry.json \
  76. && test -f /usr/src/sentry/src/sentry/integration-docs/python.json \
  77. && test -f /usr/src/sentry/src/sentry/static/sentry/dist/entrypoints/app.js \
  78. && sentry help \
  79. && :
  80. EXPOSE 9000
  81. VOLUME /data
  82. ENTRYPOINT exec /docker-entrypoint.sh "$0" "$@"
  83. CMD ["run", "web"]
  84. ARG SOURCE_COMMIT
  85. ENV SENTRY_BUILD=${SOURCE_COMMIT:-unknown}
  86. LABEL org.opencontainers.image.revision=$SOURCE_COMMIT
  87. LABEL org.opencontainers.image.source="https://github.com/getsentry/sentry/tree/${SOURCE_COMMIT:-master}/"
  88. LABEL org.opencontainers.image.licenses="https://github.com/getsentry/sentry/blob/${SOURCE_COMMIT:-master}/LICENSE"