File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
33ENV ELASTALERT_VERSION=${ELASTALERT_VERSION}
44# URL from which to download ElastAlert 2
55ARG ELASTALERT_URL=https://github.com/jertel/elastalert2/archive/refs/tags/$ELASTALERT_VERSION.zip
@@ -23,9 +23,6 @@ RUN apk add --update --no-cache \
2323
2424WORKDIR "${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
3027RUN 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
4037WORKDIR /opt/elastalert-server
4138
@@ -45,7 +42,7 @@ RUN npm ci
4542COPY . .
4643RUN npm run build
4744
48- FROM node:22.11 -alpine3.20
45+ FROM node:22.15 -alpine3.21
4946
5047LABEL description="ElastAlert2 Server"
5148LABEL maintainer="Karql <karql.pl@gmail.com>"
You can’t perform that action at this time.
0 commit comments