-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c57c26
commit 3854bf9
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM alpine | ||
|
||
RUN apk update && \ | ||
apk add ca-certificates openssl python2 py2-pip py2-yaml tzdata | ||
|
||
ENV ELASTALERT_HOME /opt/elastalert/ | ||
|
||
WORKDIR /opt | ||
|
||
ADD setup.py requirements.txt elastalert "${ELASTALERT_HOME}" | ||
|
||
WORKDIR "${ELASTALERT_HOME}" | ||
|
||
RUN apk add --virtual build-dependencies python2-dev musl-dev gcc openssl-dev libffi-dev && \ | ||
pip install -r requirements.txt && \ | ||
python setup.py install && \ | ||
apk del build-dependencies | ||
|
||
CMD [ "python", "-m", "elastalert", "--config", "/opt/config/elastalert_config.yaml", "--verbose" ] |