2020-03-13 20:39:52 +01:00
|
|
|
IMAGE ckan-datapusher_0.0.16-200313
|
|
|
|
FROM alpine3.10-python2.7_2.7.16-200313
|
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
|
2019-11-17 14:48:16 +01:00
|
|
|
apk --no-cache add libffi uwsgi-python
|
2018-09-05 17:41:38 +02:00
|
|
|
|
|
|
|
# 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
|
2020-03-13 20:39:52 +01:00
|
|
|
pip install -e 'git+https://github.com/ckan/datapusher.git@e662e3c33e069ac174cdb4fb1d61121f0ba4bb3a#egg=datapusher'
|
2018-09-05 17:41:38 +02:00
|
|
|
|
|
|
|
# Create OS user
|
2019-09-18 11:29:58 +02:00
|
|
|
addgroup -S -g 8080 ckandp
|
|
|
|
adduser -S -u 8080 -h /srv/ckan-datapusher -s /bin/false -g ckandp -G ckandp ckandp
|
2018-09-05 17:41:38 +02:00
|
|
|
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
|
|
|
|
2020-03-13 20:10:24 +01:00
|
|
|
COPY ckan-datapusher.image.d
|
2018-09-05 17:41:38 +02:00
|
|
|
|
2020-03-13 20:10:24 +01:00
|
|
|
CMD /bin/execlineb -P /run
|