Changing the sentry/Dockerfile to remove the WORKDIR caused the RUN install requirements to use the wrong directory as context.
This commit is contained in:
parent
5f7c18bd18
commit
a7c5a32e36
@ -4,4 +4,4 @@ FROM ${SENTRY_IMAGE:-getsentry/sentry:latest}
|
||||
COPY . /usr/src/sentry
|
||||
|
||||
# Hook for installing additional plugins
|
||||
RUN if [ -s requirements.txt ]; then pip install -r requirements.txt; fi
|
||||
RUN if [ -s /usr/src/sentry/requirements.txt ]; then pip install -r /usr/src/sentry/requirements.txt; fi
|
||||
|
Reference in New Issue
Block a user