1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/elastalert/Dockerfile

37 lines
812 B
Docker
Raw Normal View History

2019-10-30 08:11:49 +00:00
#
# Dockerfile for elastalert
#
2020-05-11 03:32:20 +00:00
FROM python:3-alpine
2019-10-30 08:11:49 +00:00
2020-05-11 06:12:16 +00:00
ENV ELASTALERT_VERSION=0.2.4
2019-10-30 08:11:49 +00:00
ENV ELASTALERT_HOME=/opt/elastalert
2019-10-30 10:57:53 +00:00
ENV TZ=UTC
2021-07-21 10:38:15 +00:00
ENV CRYPTOGRAPHY_DONT_BUILD_RUST=1
2019-10-30 08:11:49 +00:00
WORKDIR ${ELASTALERT_HOME}
RUN set -xe \
2019-10-30 10:57:53 +00:00
&& apk add --no-cache \
bash \
curl \
libffi \
libmagic \
libssl1.1 \
musl \
tzdata \
2019-10-30 08:11:49 +00:00
&& apk add --no-cache -t .build-deps \
build-base \
libffi-dev \
musl-dev \
openssl-dev \
2019-10-30 10:57:53 +00:00
python3-dev \
&& pip install --no-cache-dir elastalert==${ELASTALERT_VERSION} \
2019-10-30 08:11:49 +00:00
&& mkdir -p rules \
&& curl -sSL https://github.com/Yelp/elastalert/raw/${ELASTALERT_VERSION}/config.yaml.example > config.yaml \
&& apk del .build-deps
VOLUME ${ELASTALERT_HOME}
CMD ["elastalert", "--config", "config.yaml"]