We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb419c commit 03d787cCopy full SHA for 03d787c
2 files changed
CHANGES.txt
@@ -1,5 +1,7 @@
1
2.x.x (coming soon)
2
- Fixed OpenAPI spec fot /manager/splits
3
+ - Updated base image to node:24.2.0-alpine3.22
4
+ - Updated @splitsoftware/splitio package to version 11.4.1 that includes:
5
6
2.7.0 (Dec 20, 2024)
7
- Added support to arm64 images.
Dockerfile
@@ -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
@@ -8,7 +8,7 @@ COPY package.json package-lock.json ./
8
RUN npm install --only=production
9
10
# Runner stage
11
-FROM node:20.13.1-alpine3.20 AS runner
+FROM node:24.2.0-alpine3.22 AS runner
12
13
14
0 commit comments