mirror of
https://github.com/getsentry/self-hosted.git
synced 2025-12-08 19:46:14 +00:00
13 lines
328 B
Bash
Executable File
13 lines
328 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$(ls -A /usr/local/share/ca-certificates/)" ]; then
|
|
update-ca-certificates
|
|
fi
|
|
|
|
if [ -e /etc/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"
|
|
fi
|
|
|
|
source /docker-entrypoint.sh
|