Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add sentry-cassandra-nodestorage module #32

Merged
merged 1 commit into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---

version: 2
updates:
- package-ecosystem: pip
directory: /docker
schedule:
interval: weekly
day: sunday
open-pull-requests-limit: 99
commit-message:
prefix: pip-docker
labels:
- pip dependencies
groups:
autoweb:
patterns:
- '*'

- package-ecosystem: docker
directory: /docker
schedule:
interval: weekly
7 changes: 4 additions & 3 deletions docker/Dockerfile.sentry
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ ARG SENTRY_IMAGE=getsentry/sentry:${SENTRY_VERSION}
ARG APPLICATION=sentry-hh=24.7.1-1
FROM ${SENTRY_IMAGE}

COPY docker/requirements-extra.txt /tmp/
RUN set -xe && \
echo 'debconf debconf/frontend select noninteractive' | debconf-set-selections && \
apt-get update -qq && \
apt-get install -qq -y --no-install-recommends build-essential libsasl2-dev libldap2-dev libssl-dev && \
apt-get install -qq -y --no-install-recommends build-essential libsasl2-dev libldap2-dev libssl-dev git && \
cd /tmp && \
pip install --no-cache-dir --prefer-binary sentry-auth-ldap==23.6.0 django-redis==5.4.0 && \
pip install --no-cache-dir --prefer-binary -r /tmp/requirements-extra.txt && \
apt-mark manual $(dpkg-query --show -f '${Package} ' 'libsasl2*' 'libldap*' 'libssl*') && \
apt-mark auto build-essential $(dpkg-query --show -f '${Package} ' '*-dev') && \
apt-mark auto build-essential git $(dpkg-query --show -f '${Package} ' '*-dev') && \
apt-get autoremove -qq -y --purge && \
apt-get clean -qq -y && \
rm -rf -- /var/lib/apt/lists/ /tmp/*
4 changes: 4 additions & 0 deletions docker/requirements-extra.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
sentry-auth-ldap==23.6.0
django-redis==5.4.0
scylla-driver==3.26.9
git+https://github.com/doc-sheet/sentry-cassandra-nodestorage.git@e5632e1fccce1b6aeb612d0444db0807ca966993
Loading