13 lines
		
	
	
	
		
			266 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			266 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM docker.io/pretix/standalone:2023.10.2
 | 
						|
 | 
						|
USER root
 | 
						|
COPY entrypoint.sh /
 | 
						|
RUN true \
 | 
						|
    && chmod +x /entrypoint.sh \
 | 
						|
    && touch /etc/pretix/pretix.cfg \
 | 
						|
    && chown pretixuser /etc/pretix/pretix.cfg \
 | 
						|
    && true
 | 
						|
 | 
						|
USER pretixuser
 | 
						|
 | 
						|
ENTRYPOINT ["/entrypoint.sh"]
 |