Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/HH-226664' into EXP-97147
Browse files Browse the repository at this point in the history
  • Loading branch information
HH ReleaseBot committed Aug 20, 2024
2 parents d627549 + bb10352 commit b228154
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 3 deletions.
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

0 comments on commit b228154

Please sign in to comment.