2022-01-19 00:46:04 +00:00
|
|
|
FROM alpine:3.15
|
2019-09-21 12:09:17 +00:00
|
|
|
#
|
2017-10-13 18:58:14 +00:00
|
|
|
# Include dist
|
2022-03-08 23:36:03 +00:00
|
|
|
COPY dist/ /root/dist/
|
2019-09-21 12:09:17 +00:00
|
|
|
#
|
2017-10-13 18:58:14 +00:00
|
|
|
# Install packages
|
2021-02-16 13:15:26 +00:00
|
|
|
RUN apk -U --no-cache add \
|
2018-05-16 16:37:10 +00:00
|
|
|
build-base \
|
2018-03-25 18:35:32 +00:00
|
|
|
git \
|
2018-11-21 10:29:03 +00:00
|
|
|
libffi-dev \
|
2019-02-06 16:11:08 +00:00
|
|
|
libssl1.1 \
|
2018-03-25 18:35:32 +00:00
|
|
|
openssl-dev \
|
2019-09-21 12:09:17 +00:00
|
|
|
python3 \
|
|
|
|
python3-dev \
|
|
|
|
py3-cffi \
|
2021-02-16 13:15:26 +00:00
|
|
|
py3-cryptography \
|
2019-09-21 12:09:17 +00:00
|
|
|
py3-ipaddress \
|
|
|
|
py3-lxml \
|
|
|
|
py3-mysqlclient \
|
2022-03-12 17:59:31 +00:00
|
|
|
py3-openssl \
|
2019-09-21 12:09:17 +00:00
|
|
|
py3-requests \
|
2020-06-26 14:34:05 +00:00
|
|
|
py3-pip \
|
2022-03-13 10:19:08 +00:00
|
|
|
py3-setuptools \
|
|
|
|
py3-wheel && \
|
2022-03-08 23:36:03 +00:00
|
|
|
pip3 install --upgrade pip && \
|
2022-03-12 17:59:31 +00:00
|
|
|
pip3 install --no-cache-dir configparser hpfeeds3 influxdb influxdb-client xmljson && \
|
2019-09-21 12:09:17 +00:00
|
|
|
#
|
2017-10-13 18:58:14 +00:00
|
|
|
# Setup ewsposter
|
2020-12-02 23:21:23 +00:00
|
|
|
git clone https://github.com/telekom-security/ewsposter /opt/ewsposter && \
|
2020-09-04 12:37:28 +00:00
|
|
|
cd /opt/ewsposter && \
|
2021-11-18 13:48:02 +00:00
|
|
|
# git checkout 11ab4c8a0a1b63d4bca8c52c07f2eab520d0b257 && \
|
|
|
|
git checkout 17c08f3ae500d838c1528c9700e4430d5f6ad214 && \
|
2017-10-13 18:58:14 +00:00
|
|
|
mkdir -p /opt/ewsposter/spool /opt/ewsposter/log && \
|
2019-09-21 12:09:17 +00:00
|
|
|
#
|
2017-10-13 18:58:14 +00:00
|
|
|
# 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 && \
|
2019-09-21 12:09:17 +00:00
|
|
|
#
|
2017-10-13 18:58:14 +00:00
|
|
|
# Supply configs
|
|
|
|
mv /root/dist/ews.cfg /opt/ewsposter/ && \
|
2020-02-14 15:28:06 +00:00
|
|
|
# mv /root/dist/*.pem /opt/ewsposter/ && \
|
2019-09-21 12:09:17 +00:00
|
|
|
#
|
2017-10-13 18:58:14 +00:00
|
|
|
# Clean up
|
2018-03-25 18:35:32 +00:00
|
|
|
apk del build-base \
|
|
|
|
git \
|
|
|
|
openssl-dev \
|
2019-09-21 12:09:17 +00:00
|
|
|
python3-dev \
|
2018-03-25 18:35:32 +00:00
|
|
|
py-setuptools && \
|
2022-03-08 23:36:03 +00:00
|
|
|
rm -rf /root/* /var/cache/apk/* /opt/ewsposter/.git
|
2019-09-21 12:09:17 +00:00
|
|
|
#
|
2017-10-13 18:58:14 +00:00
|
|
|
# Run ewsposter
|
2018-09-11 12:19:26 +00:00
|
|
|
STOPSIGNAL SIGINT
|
2018-03-31 15:18:28 +00:00
|
|
|
USER ews:ews
|
2020-03-09 10:43:52 +00:00
|
|
|
CMD sleep 10 && exec /usr/bin/python3 -u /opt/ewsposter/ews.py -l $(shuf -i 10-60 -n 1)
|