This follows the best-practice of mounting the config folder as a volume and removes the need to rebuild sentry images for config changes. Partially addresses #314.
		
			
				
	
	
		
			8 lines
		
	
	
		
			202 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			202 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
ARG SENTRY_IMAGE
 | 
						|
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
 |