Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2.x.x (coming soon)
2.7.1 (Jun 25, 2025)
- Fixed OpenAPI spec fot /manager/splits
- Updated base image to node:24.2.0-alpine3.22

2.7.0 (Dec 20, 2024)
- Added support to arm64 images.
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Builder stage
FROM node:20.13.1-alpine3.20 AS builder
FROM node:24.2.0-alpine3.22 AS builder

WORKDIR /usr/src/split-evaluator

Expand All @@ -8,7 +8,7 @@ COPY package.json package-lock.json ./
RUN npm install --only=production

# Runner stage
FROM node:20.13.1-alpine3.20 AS runner
FROM node:24.2.0-alpine3.22 AS runner

WORKDIR /usr/src/split-evaluator

Expand Down
Loading