We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a76bfb + 8f3c963 commit 921e993Copy full SHA for 921e993
5 files changed
.github/CODEOWNERS
@@ -0,0 +1 @@
1
+* @splitio/sdk
.github/workflows/ci.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Install Node.js
16
uses: actions/setup-node@v3
17
with:
18
- node-version: 18.15.0
+ node-version: 18.16.0
19
20
- run: npm ci
21
- run: npm run lint
Dockerfile
@@ -1,5 +1,5 @@
# Builder stage
2
-FROM node:18.15.0-alpine3.17 AS builder
+FROM node:18.16.0-alpine3.18 AS builder
3
4
WORKDIR /usr/src/split-evaluator
5
@@ -8,7 +8,7 @@ COPY package.json package-lock.json ./
8
RUN npm install --only=production
9
10
# Runner stage
11
-FROM node:18.15.0-alpine3.17 AS runner
+FROM node:18.16.0-alpine3.18 AS runner
12
13
14
0 commit comments