Skip to content

Commit f56f906

Browse files
committed
Release 5.13.0
- Update elastalert2 to v2.22.0 - Update build image to alpine:3.20 - Update main image to node:22.15-alpine3.21
1 parent 64ca0ef commit f56f906

2 files changed

Lines changed: 12 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 5.13.0
2+
3+
### Changes
4+
* Update elastalert2 to v2.22.0
5+
* Update npm packages
6+
* Update build image to alpine:3.20
7+
* Update main image to node:22.15-alpine3.21
8+
19
## 5.12.0
210

311
### Changes

Dockerfile

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
FROM alpine:3.20 as build-elastalert
2-
ARG ELASTALERT_VERSION=2.21.0
1+
FROM alpine:3.21 as build-elastalert
2+
ARG ELASTALERT_VERSION=2.22.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
@@ -23,9 +23,6 @@ RUN apk add --update --no-cache \
2323

2424
WORKDIR "${ELASTALERT_HOME}"
2525

26-
# Temp fix before new alpine release
27-
RUN sed -i "s/python_requires='>=3.13'/python_requires='>=3.12'/" setup.py
28-
2926
# Building ElastAlert 2
3027
RUN python3 setup.py sdist bdist_wheel
3128

@@ -35,7 +32,7 @@ RUN python3 -m venv /opt/elastalert2-venv && \
3532
pip3 install dist/*.tar.gz && \
3633
deactivate
3734

38-
FROM node:22.11-alpine3.20 as build-server
35+
FROM node:22.15-alpine3.21 as build-server
3936

4037
WORKDIR /opt/elastalert-server
4138

@@ -45,7 +42,7 @@ RUN npm ci
4542
COPY . .
4643
RUN npm run build
4744

48-
FROM node:22.11-alpine3.20
45+
FROM node:22.15-alpine3.21
4946

5047
LABEL description="ElastAlert2 Server"
5148
LABEL maintainer="Karql <karql.pl@gmail.com>"

0 commit comments

Comments
 (0)