Skip to content

Commit

Permalink
chore: upgrade to node 20.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fredriklindberg committed Feb 10, 2024
1 parent 56e3368 commit e8fc746
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG NODE_VERSION
ARG ALPINE_VERSION=3.18
ARG ALPINE_VERSION=3.19
FROM node:${NODE_VERSION}-alpine${ALPINE_VERSION} AS builder
RUN apk add \
build-base \
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
registry?=exposr
node_version=20.10.0
alpine_version=3.18
node_version=20.11.0
alpine_version=3.19
platforms?=linux/amd64,linux/arm64

project:=exposrd
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/test_cluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const startExposrd = (name = "", network, args = [], dockerargs = []) => {
"--workdir", "/app",
"--add-host", "host.docker.internal:host-gateway",
].concat(dockerargs).concat([
"node:20.10.0-alpine3.18",
"node:20.11.0-alpine3.19",
"exposrd.mjs"
]).concat(args), {detached: true});

Expand Down

0 comments on commit e8fc746

Please sign in to comment.