Skip to content

Commit be75eca

Browse files
committed
Release 5.21.0
- Update elastalert2 to v2.30.0 #108 - Update build image to alpine:3.24 - Update main image to node:26.3-alpine3.24
1 parent 3709c81 commit be75eca

4 files changed

Lines changed: 15 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 5.21.0
2+
3+
* Update elastalert2 to v2.30.0 #108
4+
* Update npm packages
5+
* Update build image to alpine:3.24
6+
* Update main image to node:26.3-alpine3.24
7+
18
## 5.20.0
29

310
* Update elastalert2 to v2.29.0 #107

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM alpine:3.23 as build-elastalert
2-
ARG ELASTALERT_VERSION=2.29.0
1+
FROM alpine:3.24 as build-elastalert
2+
ARG ELASTALERT_VERSION=2.30.0
33
ENV ELASTALERT_VERSION=${ELASTALERT_VERSION}
44
# URL from which to download ElastAlert 2
55
ARG ELASTALERT_URL=https://github.com/jertel/elastalert2/archive/refs/tags/$ELASTALERT_VERSION.zip
@@ -32,7 +32,7 @@ RUN python3 -m venv /opt/elastalert2-venv && \
3232
pip3 install dist/*.tar.gz && \
3333
deactivate
3434

35-
FROM node:24.14-alpine3.23 as build-server
35+
FROM node:26.3-alpine3.24 as build-server
3636

3737
WORKDIR /opt/elastalert-server
3838

@@ -42,7 +42,7 @@ RUN npm ci
4242
COPY . .
4343
RUN npm run build
4444

45-
FROM node:24.14-alpine3.23
45+
FROM node:26.3-alpine3.24
4646

4747
LABEL description="ElastAlert2 Server"
4848
LABEL maintainer="Karql <karql.pl@gmail.com>"
@@ -52,7 +52,7 @@ ENV TZ Etc/UTC
5252

5353
RUN apk add --update --no-cache tzdata python3
5454

55-
COPY --from=build-elastalert /opt/elastalert2-venv/lib/python3.12/site-packages /usr/lib/python3.12/site-packages
55+
COPY --from=build-elastalert /opt/elastalert2-venv/lib/python3.14/site-packages /usr/lib/python3.14/site-packages
5656
COPY --from=build-elastalert /opt/elastalert2-venv/bin/elastalert* /usr/bin/
5757
RUN mkdir -p /opt/elastalert
5858

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "elastalert2-server",
3-
"version": "5.20.0",
3+
"version": "5.21.0",
44
"description": "A server that runs ElastAlert2 and exposes REST API's for manipulating rules and alerts.",
55
"license": "MIT",
66
"main": "index.js",

0 commit comments

Comments
 (0)