Skip to content
Open
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
4 changes: 2 additions & 2 deletions sentry/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG SENTRY_IMAGE
FROM ${SENTRY_IMAGE}

RUN pip install https://github.com/getsentry/sentry-nodestore-s3/archive/main.zip
RUN /.venv/bin/pip install https://github.com/getsentry/sentry-nodestore-s3/archive/main.zip

COPY . /usr/src/sentry

Expand All @@ -11,5 +11,5 @@ RUN if [ -s /usr/src/sentry/enhance-image.sh ]; then \

RUN if [ -s /usr/src/sentry/requirements.txt ]; then \
echo "sentry/requirements.txt is deprecated, use sentry/enhance-image.sh - see https://develop.sentry.dev/self-hosted/#enhance-sentry-image"; \
pip install -r /usr/src/sentry/requirements.txt; \
/.venv/bin/pip install -r /usr/src/sentry/requirements.txt; \
fi
Loading