Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
julianvmodesto committed May 3, 2018
1 parent 9c57c26 commit 3854bf9
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Dockerfile
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" ]

0 comments on commit 3854bf9

Please sign in to comment.