tpotce/docker/heralding/Dockerfile

68 lines
1.6 KiB
Text
Raw Normal View History

FROM alpine:3.19
2024-02-14 21:47:41 +00:00
#
2018-03-25 18:35:32 +00:00
# Include dist
2022-03-08 23:36:03 +00:00
COPY dist/ /root/dist/
2019-10-16 14:46:58 +00:00
#
2018-03-25 18:35:32 +00:00
# Install packages
2024-02-14 21:47:41 +00:00
RUN apk -U --no-cache add \
build-base \
git \
libcap \
libffi-dev \
openssl-dev \
py3-pyzmq \
postgresql-dev \
py3-attrs \
py3-mysqlclient \
py3-nose \
py3-pip \
py3-psycopg2 \
py3-pycryptodome \
py3-pyzmq \
py3-requests \
py3-rsa \
py3-typing-extensions \
py3-wheel \
py3-yaml \
python3 \
python3-dev && \
2019-10-16 14:46:58 +00:00
#
2018-03-25 18:35:32 +00:00
# Setup heralding
mkdir -p /opt && \
cd /opt/ && \
2024-02-14 21:47:41 +00:00
# git clone https://github.com/johnnykv/heralding && \
git clone https://github.com/t3chn0m4g3/heralding && \
2018-03-25 18:35:32 +00:00
cd heralding && \
git checkout e863c8aa4cee6dd6308ccb20b2d6c816a0fda2a5 && \
cp /root/dist/requirements.txt . && \
pip3 install --break-system-packages --upgrade pip && \
pip3 install --break-system-packages --no-cache-dir -r requirements.txt && \
pip3 install --break-system-packages --no-cache-dir . && \
2019-10-16 14:46:58 +00:00
#
2018-03-25 18:35:32 +00:00
# Setup user, groups and configs
addgroup -g 2000 heralding && \
2018-05-07 20:25:00 +00:00
adduser -S -H -s /bin/ash -u 2000 -D -g 2000 heralding && \
2018-03-31 21:44:11 +00:00
mkdir -p /var/log/heralding/ /etc/heralding && \
mv /root/dist/heralding.yml /etc/heralding/ && \
setcap cap_net_bind_service=+ep $(readlink -f $(type -P python3)) && \
2018-05-07 20:25:00 +00:00
chown -R heralding:heralding /var/log/heralding && \
2019-10-16 14:46:58 +00:00
#
2018-03-25 18:35:32 +00:00
# Clean up
2018-03-25 20:58:46 +00:00
apk del --purge \
build-base \
git \
libcap \
libffi-dev \
openssl-dev \
postgresql-dev \
python3-dev && \
2018-05-07 20:25:00 +00:00
rm -rf /root/* \
/var/cache/apk/* \
/opt/heralding
2019-10-16 14:46:58 +00:00
#
2020-01-02 17:37:08 +00:00
# Start Heralding
2018-09-11 12:19:26 +00:00
STOPSIGNAL SIGINT
2018-03-31 21:44:11 +00:00
WORKDIR /tmp/heralding/
2018-05-07 20:25:00 +00:00
USER heralding:heralding
2018-04-17 13:54:57 +00:00
CMD exec heralding -c /etc/heralding/heralding.yml -l /var/log/heralding/heralding.log