mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-03 20:27:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			385 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			385 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
# We need to install build-essential in order to build some Python packages (e.g. python-ldap)
 | 
						|
RUN apt-get update && apt-get install --no-install-recommends -y -qq \
 | 
						|
    default-jre-headless \
 | 
						|
    build-essential \
 | 
						|
    && rm -rf /var/lib/apt/lists/*
 | 
						|
 | 
						|
RUN --mount=type=bind,source=./docker/snippets/oracle_instantclient.sh,target=/oracle_instantclient.sh \
 | 
						|
    /oracle_instantclient.sh
 |