Skip to content

Commit

Permalink
praecoapp/elastalert-server:20241227
Browse files Browse the repository at this point in the history
  • Loading branch information
nsano-rururu committed Dec 27, 2024
1 parent 74de92f commit cb1df85
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.16.0
20.18.0
16 changes: 16 additions & 0 deletions DockerImageLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# praecoapp/elastalert-server:20241227

## New features

None

## Bug Fix

None

## Other changes

- jertel/elastalert2:2.19.0 to 2.22.0
- node:20.16-alpine3.20 to node:20.18-alpine3.21
- python:3.12-alpine3.20 to python:3.12-alpine3.21

# praecoapp/elastalert-server:20241008

## New features
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stage 1: Build Elastalert
FROM python:3.12-alpine3.20 as elastalert-builder
ARG ELASTALERT_VERSION=2.20.0
FROM python:3.12-alpine3.21 as elastalert-builder
ARG ELASTALERT_VERSION=2.22.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}
Expand All @@ -15,7 +15,7 @@ RUN apk add --update --no-cache wget unzip && \
mv e* "${ELASTALERT_HOME}"

# Stage 2: Install Dependencies
FROM node:20.16-alpine3.20 as install
FROM node:20.18-alpine3.21 as install
ENV PATH /home/node/.local/bin:$PATH

RUN apk add --update --no-cache \
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
v ?= 2.20.0
v ?= 2.22.0

all: build

build:
docker pull python:3.12-alpine3.20 && docker pull node:20.16-alpine3.20
sudo docker pull python:3.12-alpine3.21 && sudo docker pull node:20.18-alpine3.21
docker build --build-arg ELASTALERT_VERSION=$(v) -t praecoapp/elastalert-server .

server: build
Expand Down

0 comments on commit cb1df85

Please sign in to comment.