mirror of
				https://github.com/yanislav-igonin/micrach
				synced 2025-11-04 02:27:02 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			172 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			172 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
FROM busybox
 | 
						|
WORKDIR /app
 | 
						|
COPY templates/ templates/
 | 
						|
COPY static/ static/
 | 
						|
COPY migrations/ migrations/
 | 
						|
COPY micrach ./
 | 
						|
RUN chmod +x /app/micrach
 | 
						|
ENTRYPOINT ["/app/micrach"] |