Customize Pretix for our use
This commit is contained in:
		
				commit
				
					
						aa1e3a65ae
					
				
			
		
					 4 changed files with 125 additions and 0 deletions
				
			
		
							
								
								
									
										13
									
								
								Dockerfile
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								Dockerfile
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,13 @@
 | 
			
		|||
FROM docker.io/pretix/standalone:2023.10.0
 | 
			
		||||
 | 
			
		||||
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
 | 
			
		||||
		Reference in a new issue