2017-12-20 15:41:29 +01:00
|
|
|
FROM alpine:3.7
|
|
|
|
MAINTAINER Disassembler <disassembler@dasm.cz>
|
|
|
|
|
2017-12-21 10:39:22 +01:00
|
|
|
RUN \
|
|
|
|
# Install Python2 runtime
|
|
|
|
apk --no-cache add python2
|
2017-12-20 15:41:29 +01:00
|
|
|
|
2017-12-21 10:39:22 +01:00
|
|
|
RUN \
|
2017-12-28 09:45:21 +01:00
|
|
|
# Install runtime XML dependencies
|
2017-12-21 10:39:22 +01:00
|
|
|
apk --no-cache add libxml2 libxslt
|
2017-12-20 15:41:29 +01:00
|
|
|
|
2017-12-21 10:39:22 +01:00
|
|
|
RUN \
|
|
|
|
# Install runtime dependencies
|
2018-01-08 21:04:35 +01:00
|
|
|
apk --no-cache add libffi libressl uwsgi-python
|
|
|
|
|
|
|
|
RUN \
|
2017-12-21 10:39:22 +01:00
|
|
|
# Install build dependencies
|
2018-01-08 21:04:35 +01:00
|
|
|
apk --no-cache add --virtual .deps build-base git libffi-dev libressl-dev libxml2-dev libxslt-dev py2-pip python2-dev \
|
2017-12-21 10:39:22 +01:00
|
|
|
# Install CKAN DataPusher
|
2018-03-25 14:18:01 +02:00
|
|
|
&& mkdir -p /srv/ckandp \
|
|
|
|
&& cd /srv/ckandp \
|
2017-12-20 15:41:29 +01:00
|
|
|
&& pip install -U setuptools \
|
|
|
|
&& pip install -e 'git+https://github.com/ckan/datapusher.git#egg=datapusher' \
|
2018-02-01 17:45:43 +01:00
|
|
|
# Hackfix the X509_STORE_CTX wrapper
|
2018-03-25 14:18:01 +02:00
|
|
|
&& sed -i 's/\[security\]//' /srv/ckandp/src/datapusher/requirements.txt \
|
|
|
|
&& pip install -r /srv/ckandp/src/datapusher/requirements.txt \
|
2017-12-21 10:39:22 +01:00
|
|
|
# Create OS user
|
2018-03-25 14:18:01 +02:00
|
|
|
&& addgroup -S -g 8004 ckandp \
|
|
|
|
&& adduser -S -u 8004 -h /srv/ckandp -s /bin/false -g ckandp -G ckandp ckandp \
|
|
|
|
&& chown -R ckandp:ckandp /srv/ckandp \
|
2017-12-21 10:39:22 +01:00
|
|
|
# Cleanup
|
2018-01-29 16:47:27 +01:00
|
|
|
&& apk --no-cache del .deps \
|
2018-03-25 14:18:01 +02:00
|
|
|
&& find /srv/ckandp/src -name '.git*' -exec rm -rf {} + \
|
2018-01-24 16:28:41 +01:00
|
|
|
&& rm -rf /root/.cache
|
2017-12-20 15:41:29 +01:00
|
|
|
|
2018-03-25 14:18:01 +02:00
|
|
|
VOLUME ["/etc/ckandp", "/srv/ckandp/data"]
|
2018-03-25 22:55:15 +02:00
|
|
|
EXPOSE 8080
|
2017-12-20 15:41:29 +01:00
|
|
|
|
2018-03-25 14:18:01 +02:00
|
|
|
USER ckandp
|
|
|
|
CMD ["uwsgi", "--plugin", "python", "--http-socket", "0.0.0.0:8080", "--wsgi-file", "/etc/ckandp/datapusher.wsgi", "--enable-threads"]
|