| 
					
				 | 
			
			
				@@ -7,7 +7,7 @@ HEALTHCHECK --start-period=30s --interval=15s --timeout=5s --retries=2 CMD /heal 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 RUN set -x && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     yum install -y epel-release && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     curl https://copr.fedorainfracloud.org/coprs/makowski/firebird/repo/epel-7/makowski-firebird-epel-7.repo > /etc/yum.repos.d/makowski-firebird-epel-7.repo && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-    yum install -y firebird-3.0.5.33220 icu && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+    yum install -y firebird-3.0.6.33328 icu && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     mkdir -p /var/run/firebird && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     chown firebird. /var/run/firebird && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     chown firebird. /data && \ 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -16,6 +16,9 @@ RUN set -x && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 COPY firebird.conf /etc/firebird/firebird.conf 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 COPY docker-entrypoint.sh /docker-entrypoint.sh 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 COPY healthcheck.sh /healthcheck.sh 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+COPY libcluster.so /usr/lib64/firebird/plugins/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+COPY cluster.conf /usr/lib64/firebird/plugins/ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+COPY libcrypto.so /usr/lib64/firebird/plugins/udr  
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 RUN set -x && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     chmod +x /docker-entrypoint.sh && \ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				     chmod +x /healthcheck.sh 
			 |