mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-19 21:52:27 +00:00
53 lines
1.3 KiB
Docker
53 lines
1.3 KiB
Docker
FROM alpine
|
|
|
|
# Include dist
|
|
ADD dist/ /root/dist/
|
|
|
|
# Install packages
|
|
RUN apk -U --no-cache add \
|
|
build-base \
|
|
git \
|
|
libffi-dev \
|
|
libssl1.1 \
|
|
openssl-dev \
|
|
python-dev \
|
|
py-cffi \
|
|
py-ipaddress \
|
|
py-lxml \
|
|
py-mysqldb \
|
|
py-pip \
|
|
py-pysqlite \
|
|
py-requests \
|
|
py-setuptools && \
|
|
pip install --no-cache-dir -U pip && \
|
|
pip install --no-cache-dir pyOpenSSL xmljson && \
|
|
|
|
# Setup ewsposter
|
|
git clone --depth=1 https://github.com/rep/hpfeeds /opt/hpfeeds && \
|
|
cd /opt/hpfeeds && \
|
|
python setup.py install && \
|
|
git clone --depth=1 https://github.com/vorband/ewsposter /opt/ewsposter && \
|
|
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 && \
|
|
chown -R ews:ews /opt/ewsposter && \
|
|
|
|
# Supply configs
|
|
mv /root/dist/ews.cfg /opt/ewsposter/ && \
|
|
|
|
# Clean up
|
|
apk del build-base \
|
|
git \
|
|
openssl-dev \
|
|
python-dev \
|
|
py-pip \
|
|
py-setuptools && \
|
|
rm -rf /root/* && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
# Run ewsposter
|
|
STOPSIGNAL SIGINT
|
|
USER ews:ews
|
|
CMD sleep 10 && exec /usr/bin/python -u /opt/ewsposter/ews.py -l 60
|