- Bump basic OS to Alpine 3.9 - Restructure repo and add layer versioning - Use JSON for all metadata - Merge abuild branch (but without abuild)
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| IMAGE ckan-datapusher
 | |
| LAYER shared/alpine3.9
 | |
| LAYER shared/alpine3.9-python2.7
 | |
| LAYER ckan-datapusher/ckan-datapusher
 | |
| 
 | |
| RUN EOF
 | |
|     # Install runtime dependencies
 | |
|     apk --no-cache add libffi libressl uwsgi-python
 | |
| 
 | |
|     # Install build dependencies
 | |
|     apk --no-cache add --virtual .deps build-base git libffi-dev libressl-dev libxml2-dev libxslt-dev py2-pip python2-dev
 | |
| 
 | |
|     # Install CKAN DataPusher
 | |
|     mkdir -p /srv/ckan-datapusher
 | |
|     cd /srv/ckan-datapusher
 | |
|     pip install -U setuptools
 | |
|     pip install -e 'git+https://github.com/ckan/datapusher.git#egg=datapusher'
 | |
| 
 | |
|     # Hackfix the X509_STORE_CTX wrapper
 | |
|     sed -i 's/\[security\]//' /srv/ckan-datapusher/src/datapusher/requirements.txt
 | |
|     pip install -r /srv/ckan-datapusher/src/datapusher/requirements.txt
 | |
| 
 | |
|     # Create OS user
 | |
|     addgroup -S -g 8004 ckandp
 | |
|     adduser -S -u 8004 -h /srv/ckan-datapusher -s /bin/false -g ckandp -G ckandp ckandp
 | |
|     chown -R ckandp:ckandp /srv/ckan-datapusher
 | |
| 
 | |
|     # Cleanup
 | |
|     apk --no-cache del .deps
 | |
|     find /srv/ckan-datapusher/src -name '.git*' -exec rm -rf {} +
 | |
|     rm -rf /root/.cache
 | |
| EOF
 | |
| 
 | |
| COPY lxc
 | |
| 
 | |
| MOUNT FILE /etc/ssl/services.pem etc/ssl/services.pem
 | |
| MOUNT DIR /srv/ckan-datapusher/conf etc/ckan-datapusher
 | |
| MOUNT DIR /srv/ckan-datapusher/data srv/ckan-datapusher/data
 | |
| 
 | |
| CMD execlineb -P /run
 |