2017-10-13 18:58:14 +00:00
|
|
|
FROM alpine
|
|
|
|
|
|
|
|
# Include dist
|
|
|
|
ADD dist/ /root/dist/
|
|
|
|
|
|
|
|
# Install packages
|
2018-05-16 16:37:10 +00:00
|
|
|
RUN apk -U --no-cache add \
|
|
|
|
build-base \
|
2018-03-25 18:35:32 +00:00
|
|
|
git \
|
2018-11-21 10:29:03 +00:00
|
|
|
libffi-dev \
|
2019-02-06 15:43:09 +00:00
|
|
|
libssl1.1 \
|
2018-03-25 18:35:32 +00:00
|
|
|
openssl-dev \
|
|
|
|
python-dev \
|
|
|
|
py-cffi \
|
|
|
|
py-ipaddress \
|
|
|
|
py-lxml \
|
|
|
|
py-mysqldb \
|
|
|
|
py-pip \
|
|
|
|
py-pysqlite \
|
|
|
|
py-requests \
|
|
|
|
py-setuptools && \
|
2018-05-16 16:37:10 +00:00
|
|
|
pip install --no-cache-dir -U pip && \
|
2019-04-18 08:24:42 +00:00
|
|
|
pip install --no-cache-dir pyOpenSSL xmljson && \
|
2017-10-13 18:58:14 +00:00
|
|
|
|
|
|
|
# Setup ewsposter
|
2018-05-16 16:37:10 +00:00
|
|
|
git clone --depth=1 https://github.com/rep/hpfeeds /opt/hpfeeds && \
|
2017-10-13 18:58:14 +00:00
|
|
|
cd /opt/hpfeeds && \
|
|
|
|
python setup.py install && \
|
2018-05-16 16:37:10 +00:00
|
|
|
git clone --depth=1 https://github.com/vorband/ewsposter /opt/ewsposter && \
|
2017-10-13 18:58:14 +00:00
|
|
|
mkdir -p /opt/ewsposter/spool /opt/ewsposter/log && \
|
|
|
|
|
|
|
|
# Setup user and groups
|
|
|
|
addgroup -g 2000 ews && \
|
|
|
|
adduser -S -H -u 2000 -D -g 2000 ews && \
|
2018-03-31 15:18:28 +00:00
|
|
|
chown -R ews:ews /opt/ewsposter && \
|
2017-10-13 18:58:14 +00:00
|
|
|
|
|
|
|
# Supply configs
|
|
|
|
mv /root/dist/ews.cfg /opt/ewsposter/ && \
|
|
|
|
|
|
|
|
# Clean up
|
2018-03-25 18:35:32 +00:00
|
|
|
apk del build-base \
|
|
|
|
git \
|
|
|
|
openssl-dev \
|
|
|
|
python-dev \
|
|
|
|
py-pip \
|
|
|
|
py-setuptools && \
|
2017-10-13 18:58:14 +00:00
|
|
|
rm -rf /root/* && \
|
|
|
|
rm -rf /var/cache/apk/*
|
|
|
|
|
|
|
|
# Run ewsposter
|
2018-09-11 12:19:26 +00:00
|
|
|
STOPSIGNAL SIGINT
|
2018-03-31 15:18:28 +00:00
|
|
|
USER ews:ews
|
2018-04-26 15:18:23 +00:00
|
|
|
CMD sleep 10 && exec /usr/bin/python -u /opt/ewsposter/ews.py -l 60
|