From 8dabba4370a967ddbde73cfcb436930d64eb807a Mon Sep 17 00:00:00 2001 From: nsano-rururu Date: Sat, 19 Aug 2023 22:25:35 +0900 Subject: [PATCH] praecoapp/elastalert-server:20230819 --- .nvmrc | 2 +- DockerImageLog.md | 15 +++++++++++++++ Dockerfile | 8 ++++---- Makefile | 4 ++-- package.json | 5 +++-- 5 files changed, 25 insertions(+), 9 deletions(-) diff --git a/.nvmrc b/.nvmrc index ab17f82..1b497a7 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -16.20.1 \ No newline at end of file +16.20.2 \ No newline at end of file diff --git a/DockerImageLog.md b/DockerImageLog.md index 3d910d6..6227e3d 100644 --- a/DockerImageLog.md +++ b/DockerImageLog.md @@ -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 diff --git a/Dockerfile b/Dockerfile index 3f8c67f..d90e822 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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} @@ -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 \ @@ -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 @@ -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 " ENV TZ Etc/UTC ENV PATH /home/node/.local/bin:$PATH diff --git a/Makefile b/Makefile index 79a3627..31b2629 100644 --- a/Makefile +++ b/Makefile @@ -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 diff --git a/package.json b/package.json index 185f2bb..94d97e6 100644 --- a/package.json +++ b/package.json @@ -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", @@ -37,6 +37,7 @@ "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", @@ -44,7 +45,7 @@ "ws": "^8.13.0" }, "devDependencies": { - "eslint": "^8.46.0" + "eslint": "^8.47.0" }, "scripts": { "build": "babel src -d lib",