Spotter-VM/ckandp/Dockerfile

41 lines
1.3 KiB
Docker
Raw Normal View History

2017-12-20 15:41:29 +01:00
FROM alpine:3.7
MAINTAINER Disassembler <disassembler@dasm.cz>
RUN \
# Install Python2 runtime
apk --no-cache add python2
2017-12-20 15:41:29 +01:00
RUN \
# Install runtime XML dependencies
apk --no-cache add libxml2 libxslt
2017-12-20 15:41:29 +01:00
RUN \
# Install runtime dependencies
2018-01-08 21:04:35 +01:00
apk --no-cache add libffi libressl uwsgi-python
RUN \
# 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 \
# 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 \
# 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 \
# Cleanup
&& apk --no-cache del .deps \
2018-03-25 14:18:01 +02:00
&& find /srv/ckandp/src -name '.git*' -exec rm -rf {} + \
&& 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"]