-
Notifications
You must be signed in to change notification settings - Fork 28
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:20230819
- Loading branch information
1 parent
d40974b
commit 8dabba4
Showing
5 changed files
with
25 additions
and
9 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.20.1 | ||
16.20.2 |
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.18 as ea2 | ||
ARG ELASTALERT_VERSION=2.13.0 | ||
ARG ELASTALERT_VERSION=2.13.2 | ||
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.20.1-alpine3.18 as install | ||
FROM node:16.20.2-alpine3.18 as install | ||
ENV PATH /home/node/.local/bin:$PATH | ||
|
||
RUN apk add --update --no-cache \ | ||
|
@@ -40,7 +40,7 @@ COPY . /opt/elastalert-server | |
|
||
RUN npm install --production --quiet | ||
|
||
RUN pip3 install --no-cache-dir --upgrade pip==23.1.2 | ||
RUN pip3 install --no-cache-dir --upgrade pip==23.2.1 | ||
|
||
USER node | ||
|
||
|
@@ -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.20.1-alpine3.18 | ||
FROM node:16.20.2-alpine3.18 | ||
LABEL maintainer="John Susek <[email protected]>" | ||
ENV TZ Etc/UTC | ||
ENV PATH /home/node/.local/bin:$PATH | ||
|
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