-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
praecoapp/elastalert-server:20230625
- Loading branch information
1 parent
086c60a
commit 7595a9b
Showing
5 changed files
with
32 additions
and
15 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 |
---|---|---|
@@ -1 +1 @@ | ||
16.19.0 | ||
16.20.1 |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM python:3.11-alpine3.17 as ea2 | ||
ARG ELASTALERT_VERSION=2.11.0 | ||
FROM python:3.11-alpine3.18 as ea2 | ||
ARG ELASTALERT_VERSION=2.12.0 | ||
ENV ELASTALERT_VERSION=${ELASTALERT_VERSION} | ||
ARG ELASTALERT_URL=https://github.com/jertel/elastalert2/archive/refs/tags/$ELASTALERT_VERSION.zip | ||
ENV ELASTALERT_URL=${ELASTALERT_URL} | ||
|
@@ -13,7 +13,7 @@ RUN apk add --update --no-cache wget && \ | |
rm elastalert.zip && \ | ||
mv e* "${ELASTALERT_HOME}" | ||
|
||
FROM node:16.19-alpine3.17 as install | ||
FROM node:16.20.1-alpine3.18 as install | ||
ENV PATH /home/node/.local/bin:$PATH | ||
|
||
RUN apk add --update --no-cache \ | ||
|
@@ -49,7 +49,7 @@ WORKDIR /opt/elastalert | |
RUN pip3 install --no-cache-dir cryptography --user | ||
RUN pip3 install --no-cache-dir -r requirements.txt --user | ||
|
||
FROM node:16.19-alpine3.17 | ||
FROM node:16.20.1-alpine3.18 | ||
LABEL maintainer="John Susek <[email protected]>" | ||
ENV TZ Etc/UTC | ||
ENV PATH /home/node/.local/bin:$PATH | ||
|
@@ -71,7 +71,7 @@ RUN apk add --update --no-cache \ | |
tzdata | ||
|
||
COPY --from=install /opt/elastalert /opt/elastalert | ||
COPY --from=install /home/node/.local/lib/python3.10/site-packages /home/node/.local/lib/python3.10/site-packages | ||
COPY --from=install /home/node/.local/lib/python3.11/site-packages /home/node/.local/lib/python3.11/site-packages | ||
|
||
WORKDIR /opt/elastalert-server | ||
|
||
|
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
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