2019-06-25 15:56:35 +02:00
|
|
|
IMAGE ckan-datapusher 0.0.13-190620
|
|
|
|
META title CKAN DataPusher
|
|
|
|
META desc-cs Služba datového skladu pro extrakci dat
|
|
|
|
META desc-en Data store data extraction service
|
|
|
|
META type app
|
|
|
|
META license GPL
|
|
|
|
|
|
|
|
LAYER alpine3.9 3.9.4-190620
|
|
|
|
LAYER alpine3.9-python2.7 2.7.16-190620
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2018-09-12 16:08:10 +02:00
|
|
|
RUN EOF
|
2018-09-05 17:41:38 +02:00
|
|
|
# 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
|
2018-09-12 16:08:10 +02:00
|
|
|
EOF
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2018-09-05 21:21:07 +02:00
|
|
|
COPY lxc
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2018-09-14 18:13:11 +02:00
|
|
|
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
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2018-09-13 16:21:16 +02:00
|
|
|
CMD execlineb -P /run
|