Dockerfile 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. FROM python:3.8.13-slim-bullseye
  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. ENV GOSU_VERSION=1.12 \
  12. GOSU_SHA256=0f25a21cf64e58078057adc78f38705163c1d564a959ff30a891c31917011a54 \
  13. TINI_VERSION=0.19.0 \
  14. 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 -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 -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. # Sane defaults for pip
  31. ENV \
  32. PIP_NO_CACHE_DIR=1 \
  33. PIP_DISABLE_PIP_VERSION_CHECK=1 \
  34. # Sentry config params
  35. SENTRY_CONF=/etc/sentry \
  36. # Disable some unused uWSGI features, saving dependencies
  37. # Thank to https://stackoverflow.com/a/25260588/90297
  38. UWSGI_PROFILE_OVERRIDE=ssl=false;xml=false;routing=false \
  39. # UWSGI dogstatsd plugin
  40. UWSGI_NEED_PLUGIN=/var/lib/uwsgi/dogstatsd \
  41. # grpcio>1.30.0 requires this, see requirements.txt for more detail.
  42. GRPC_POLL_STRATEGY=epoll1
  43. # Install dependencies first to leverage Docker layer caching.
  44. COPY /dist/requirements-frozen.txt /tmp/requirements-frozen.txt
  45. RUN set -x \
  46. && buildDeps="" \
  47. # uwsgi
  48. && buildDeps="$buildDeps \
  49. gcc \
  50. wget \
  51. " \
  52. # maxminddb
  53. && buildDeps="$buildDeps \
  54. libmaxminddb-dev \
  55. "\
  56. # xmlsec
  57. && buildDeps="$buildDeps \
  58. libxmlsec1-dev \
  59. pkg-config \
  60. " \
  61. && apt-get update \
  62. && apt-get install -y --no-install-recommends $buildDeps \
  63. && pip install -r /tmp/requirements-frozen.txt \
  64. && mkdir /tmp/uwsgi-dogstatsd \
  65. && wget -O - https://github.com/eventbrite/uwsgi-dogstatsd/archive/filters-and-tags.tar.gz | \
  66. tar -xzf - -C /tmp/uwsgi-dogstatsd --strip-components=1 \
  67. && UWSGI_NEED_PLUGIN="" uwsgi --build-plugin /tmp/uwsgi-dogstatsd \
  68. && mkdir -p /var/lib/uwsgi \
  69. && mv dogstatsd_plugin.so /var/lib/uwsgi/ \
  70. && rm -rf /tmp/requirements-frozen.txt /tmp/uwsgi-dogstatsd .uwsgi_plugins_builder \
  71. && apt-get purge -y --auto-remove $buildDeps \
  72. # We install run-time dependencies strictly after
  73. # build dependencies to prevent accidental collusion.
  74. # These are also installed last as they are needed
  75. # during container run and can have the same deps w/
  76. # build deps such as maxminddb.
  77. && apt-get install -y --no-install-recommends \
  78. # pillow
  79. libjpeg-dev \
  80. # rust bindings
  81. libffi-dev \
  82. # maxminddb bindings
  83. libmaxminddb-dev \
  84. # SAML needs these run-time
  85. libxmlsec1-dev \
  86. libxslt-dev \
  87. # pyyaml needs this run-time
  88. libyaml-dev \
  89. # other
  90. pkg-config \
  91. \
  92. && apt-get clean \
  93. && rm -rf /var/lib/apt/lists/* \
  94. # Fully verify that the C extension is correctly installed, it unfortunately
  95. # requires a full check into maxminddb.extension.Reader
  96. && python -c 'import maxminddb.extension; maxminddb.extension.Reader' \
  97. && mkdir -p $SENTRY_CONF
  98. COPY /dist/*.whl /tmp/dist/
  99. RUN pip install /tmp/dist/*.whl --no-deps && pip check && rm -rf /tmp/dist
  100. RUN sentry help | sed '1,/Commands:/d' | awk '{print $1}' > /sentry-commands.txt
  101. COPY ./docker/sentry.conf.py ./docker/config.yml $SENTRY_CONF/
  102. COPY ./docker/docker-entrypoint.sh /
  103. EXPOSE 9000
  104. VOLUME /data
  105. ENTRYPOINT exec /docker-entrypoint.sh "$0" "$@"
  106. CMD ["run", "web"]
  107. ARG SOURCE_COMMIT
  108. ENV SENTRY_BUILD=${SOURCE_COMMIT:-unknown}
  109. LABEL org.opencontainers.image.revision=$SOURCE_COMMIT
  110. LABEL org.opencontainers.image.source="https://github.com/getsentry/sentry/tree/${SOURCE_COMMIT:-master}/"
  111. LABEL org.opencontainers.image.licenses="https://github.com/getsentry/sentry/blob/${SOURCE_COMMIT:-master}/LICENSE"