From 7cb471a0a462d4bc49d1d2f226c7459dd3ff932a Mon Sep 17 00:00:00 2001 From: Gard Rimestad Date: Tue, 26 Sep 2023 10:41:13 +0200 Subject: [PATCH] chore: pin node version 18.17.1 (#4834) We are pinning node to version 18.17.1 as we have seen some performance degregation on node 18.18.0 on arm64. We will investigate this further at a later point. This is to mitigate the issue. Our next step in pinpointing the issue will be to compare between running on musl vs libc on arm64. --- .github/workflows/docker_publish.yaml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker_publish.yaml b/.github/workflows/docker_publish.yaml index 55f00164c6..7c9ca6e239 100644 --- a/.github/workflows/docker_publish.yaml +++ b/.github/workflows/docker_publish.yaml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: [18-alpine] + version: [18.17.1-alpine] steps: - name: Checkout uses: actions/checkout@v3 diff --git a/Dockerfile b/Dockerfile index 977b7ec3a5..b9b474da52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG NODE_VERSION=18-alpine +ARG NODE_VERSION=18.17.1-alpine FROM node:$NODE_VERSION as builder