a7c5a32e36
Changing the sentry/Dockerfile to remove the WORKDIR caused the RUN install requirements to use the wrong directory as context.
8 lines
234 B
Docker
8 lines
234 B
Docker
ARG SENTRY_IMAGE
|
|
FROM ${SENTRY_IMAGE:-getsentry/sentry:latest}
|
|
|
|
COPY . /usr/src/sentry
|
|
|
|
# Hook for installing additional plugins
|
|
RUN if [ -s /usr/src/sentry/requirements.txt ]; then pip install -r /usr/src/sentry/requirements.txt; fi
|