Skip to content

Commit

Permalink
praecoapp/elastalert-server:20230819
Browse files Browse the repository at this point in the history
  • Loading branch information
nsano-rururu committed Aug 19, 2023
1 parent d40974b commit 8dabba4
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.20.1
16.20.2
15 changes: 15 additions & 0 deletions DockerImageLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# praecoapp/elastalert-server:20230819

## New features

None

## Bug Fix

None

## Other changes

- jertel/elastalert2:2.13.0 to 2.13.2
- Library Update

# praecoapp/elastalert-server:20230811

## New features
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
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}
Expand All @@ -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 \
Expand All @@ -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

Expand All @@ -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
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.13.0
v ?= 2.13.2

all: build

build:
docker pull python:3.11-alpine3.18 && docker pull node:16.20.1-alpine3.18
docker pull python:3.11-alpine3.18 && docker pull node:16.20.2-alpine3.18
docker build --build-arg ELASTALERT_VERSION=$(v) -t praecoapp/elastalert-server .

server: build
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@johnsusek/elastalert-server",
"version": "20230811",
"version": "20230819",
"description": "A server that runs ElastAlert and exposes REST API's for manipulating rules and alerts.",
"license": "MIT",
"main": "index.js",
Expand Down Expand Up @@ -37,14 +37,15 @@
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mkdirp": "^3.0.1",
"npm-check-updates": "^16.12.2",
"object-resolve-path": "^1.1.1",
"randomstring": "^1.3.0",
"readdirp": "^3.6.0",
"recursive-readdir": "^2.2.3",
"ws": "^8.13.0"
},
"devDependencies": {
"eslint": "^8.46.0"
"eslint": "^8.47.0"
},
"scripts": {
"build": "babel src -d lib",
Expand Down

0 comments on commit 8dabba4

Please sign in to comment.